/* Variables de color */
:root {
    --primary: #FFD700;  /* Amarillo plomo */
    --primary-dark: #D4AF37;
    --secondary: #000000; /* Negro */
    --secondary-light: #1a1a1a;
    --text: #e0e0e0;
    --text-dark: #333333;
    --bg: #121212;
    --bg-light: #1e1e1e;
    --accent: #FFD700;
    --accent-dark: #D4AF37;
    --overlay: rgba(0, 0, 0, 0.8);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  /* Reset y estilos base */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 62.5%;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1.6rem;
  }
  
  /* Tipografía */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  h1 { font-size: 6rem; }
  h2 { font-size: 4.5rem; }
  h3 { font-size: 3.5rem; }
  h4 { font-size: 2.5rem; }
  h5 { font-size: 2rem; }
  h6 { font-size: 1.8rem; }
  
  p {
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-size: 1.6rem;
  }
  
  .highlight {
    color: var(--primary);
  }
  
  /* Layout */
  .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .section {
    padding: 10rem 0;
    position: relative;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 6rem;
  }
  
  .section-subtitle {
    display: block;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .section-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
  }
  
  .section-divider {
    height: 3px;
    width: 80px;
    background: var(--primary);
    margin: 0 auto;
    position: relative;
  }
  
  .section-divider::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--bg);
  }
  
  /* Preloader */
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
  }
  
  .loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  
  .loader-square {
    width: 20px;
    height: 20px;
    background: var(--primary);
    animation: loaderAnimation 1.5s infinite ease-in-out;
  }
  
  .loader-square:nth-child(1) { animation-delay: 0s; }
  .loader-square:nth-child(2) { animation-delay: 0.2s; }
  .loader-square:nth-child(3) { animation-delay: 0.4s; }
  .loader-square:nth-child(4) { animation-delay: 0.6s; }
  .loader-square:nth-child(5) { animation-delay: 0.8s; }
  .loader-square:nth-child(6) { animation-delay: 1s; }
  .loader-square:nth-child(7) { animation-delay: 1.2s; }
  
  @keyframes loaderAnimation {
    0%, 100% { transform: scale(0.3); opacity: 0.5; }
    50% { transform: scale(1); opacity: 1; }
  }
  
  /* Cursor personalizado */
  .cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
  }
  
  .cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    pointer-events: none;
    z-index: 998;
    transform: translate(-50%, -50%);
    transition: transform 0.4s ease, width 0.3s ease, height 0.3s ease;
  }
  
  .cursor.active,
  .cursor-follower.active {
    transform: scale(1.5);
    background: rgba(255, 215, 0, 0.5);
  }
  
  /* Header */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition);
  }
  
  .header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
  }
  
  .logo-icon {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--secondary-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
  }
  
  .logo-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
  }
  
  .nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
  }
  
  .nav-link {
    position: relative;
    color: var(--text);
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
    transition: var(--transition);
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
  }
  
  .nav-link:hover, .nav-link.active {
    color: var(--primary);
  }
  
  .nav-link:hover::after, .nav-link.active::after {
    width: 100%;
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
  }
  
  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  /* Hero Section */
  .hero-section {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  
  .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
  }
  
  .hero-title {
    margin-bottom: 3rem;
  }
  
  .title-line {
    display: block;
    overflow: hidden;
  }
  
  .hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 4rem;
    opacity: 0.9;
  }
  
  .hero-cta {
    display: flex;
    gap: 2rem;
  }
  
  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.6rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
  }
  
  .cta-button i {
    transition: var(--transition);
  }
  
  .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
  }
  
  .cta-button:hover i {
    transform: translateX(5px);
  }
  
  .cta-button.secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    color: var(--primary);
  }
  
  .hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    z-index: 1;
  }
  
  .image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
  }
  
  .parallax-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
  }
  
  .hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 5rem;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    color: var(--text);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .scroll-line {
    width: 1px;
    height: 60px;
    background: var(--text);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
  }
  
  .scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--primary);
    animation: scrollAnimation 2s infinite;
  }
  
  @keyframes scrollAnimation {
    0% { transform: translateY(-20px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(60px); opacity: 0; }
  }
  
  /* About Section */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  
  .about-text {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  
  .text-block h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
  }
  
  .text-block h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .stat-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 3px solid var(--primary);
  }
  
  .stat-value {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    font-size: 1.4rem;
    color: var(--text);
    opacity: 0.8;
  }
  
  .about-image {
    position: relative;
    height: 100%;
  }
  
  .image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
  }
  
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  }
  
  /* Objectives Section */
  .objectives-section {
    background: var(--bg-light);
  }
  
  .objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
  }
  
  .objective-card {
    background: var(--bg);
    border-radius: 15px;
    padding: 3rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    z-index: 0;
  }
  
  .objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  .card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
  }
  
  .objective-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }
  
  .objective-card p {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
  }
  
  .card-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  
  .card-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--primary);
    transition: width 1.5s ease-out;
  }
  
  .objective-card:hover .card-progress::after {
    width: var(--progress-width);
  }
  
  /* Metrics Section */
  .metrics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  
  .metrics-chart {
    width: 100%;
    height: 400px;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2rem;
  }
  
  .metrics-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .metric-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition);
  }
  
  .metric-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .metric-value {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 120px;
    text-align: center;
  }
  
  .metric-info h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .metric-info p {
    font-size: 1.4rem;
    opacity: 0.8;
  }
  
  /* Timeline Section */
  .timeline-container {
    margin-top: 5rem;
  }
  
  .timeline-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
  }
  
  .timeline-filter {
    display: flex;
    gap: 1rem;
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 50px;
  }
  
  .filter-btn {
    padding: 1rem 2.5rem;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: var(--secondary);
  }
  
  .timeline {
    position: relative;
    padding-left: 30px;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 2px;
    background: var(--primary);
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
  }
  
  .timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .timeline-item::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -30px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--bg);
  }
  
  .timeline-date {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }
  
  .timeline-content {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--primary);
    transition: var(--transition);
  }
  
  .timeline-content:hover {
    transform: translateX(10px);
  }
  
  
  .timeline-content{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.timeline-text {
    width: 70%;
}

.timeline-image {
    width: 30%;
}

.timeline-image img {
    width: 100%;
    height: 190px;
    border-radius: 8px; /* opcional */
    object-fit: cover;
}


  .timeline-media {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary);
    font-size: 1.2rem;
  }

  .timeline-media a {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.2rem;
  }
  
  .timeline-media i {
    font-size: 1.4rem;
  }
  
  /* Budget Section */
  .budget-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  
  .budget-chart {
    width: 100%;
    height: 400px;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2rem;
  }
  
  .budget-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .budget-item {
    margin-bottom: 2.5rem;
  }
  
  .budget-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
  }
  
  .budget-header h4 {
    font-size: 1.6rem;
  }
  
  .budget-header span {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
  }
  
  .budget-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
  }
  
  .budget-progress {
    height: 100%;
    background: var(--primary);
    transition: width 1.5s ease-out;
  }
  
  .budget-total {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .budget-total h4 {
    font-size: 1.8rem;
  }
  
  .budget-total span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
  }
  
  /* Contact Section */
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  
  .info-item {
    display: flex;
    gap: 2rem;
  }
  
  .info-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
  }
  
  .info-text h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .info-text p {
    font-size: 1.4rem;
    opacity: 0.8;
  }
  
  .contact-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text);
    font-size: 1.4rem;
    transition: var(--transition);
  }
  
  .social-link:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-5px);
  }
  
  .contact-form {
    background: var(--bg-light);
    padding: 4rem;
    border-radius: 20px;
  }
  
  .form-group {
    margin-bottom: 2rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text);
    font-size: 1.6rem;
    transition: var(--transition);
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
  }
  
  .form-group textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  .submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
  }
  
  .submit-btn i {
    transition: var(--transition);
  }
  
  .submit-btn:hover i {
    transform: translateX(5px);
  }
  
  /* Footer */
  .footer {
    background: var(--secondary-light);
    padding: 8rem 0 3rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    margin-bottom: 5rem;
  }
  
  .footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
  
  .footer-logo .logo-text {
    font-size: 1.8rem;
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  
  .links-column h4 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
  }
  
  .links-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
  }
  
  .links-column ul {
    list-style: none;
  }
  
  .links-column li {
    margin-bottom: 1.5rem;
  }
  
  .links-column a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.4rem;
    transition: var(--transition);
    opacity: 0.8;
  }
  
  .links-column a:hover {
    color: var(--primary);
    opacity: 1;
    padding-left: 5px;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-bottom p {
    font-size: 1.4rem;
    opacity: 0.8;
  }
  
  .footer-social {
    display: flex;
    gap: 1.5rem;
  }
  
  .footer-social a {
    color: var(--text);
    font-size: 1.4rem;
    transition: var(--transition);
    opacity: 0.8;
  }
  
  .footer-social a:hover {
    color: var(--primary);
    opacity: 1;
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
    .hero-content {
      max-width: 500px;
    }
    
    .hero-title {
      font-size: 5rem;
    }
  }
  
  @media (max-width: 992px) {
    .section {
      padding: 8rem 0;
    }
    
    .about-grid,
    .metrics-content,
    .budget-content,
    .contact-content {
      grid-template-columns: 1fr;
    }
    
    .hero-content {
      max-width: 100%;
      text-align: center;
    }
    
    .hero-cta {
      justify-content: center;
    }
    
    .hero-image {
      position: relative;
      width: 100%;
      height: 400px;
      margin-top: 5rem;
    }
    
    .image-container {
      border-radius: 20px;
    }
    
    .footer-content {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: flex;
    }
    
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 400px;
      height: 100vh;
      background: var(--bg-light);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: var(--transition);
      z-index: 1000;
    }
    
    .nav-links.active {
      right: 0;
    }
    
    .section-title {
      font-size: 3.5rem;
    }
    
    .footer-links {
      grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
      flex-direction: column;
      gap: 2rem;
      text-align: center;
    }
  }
  
  @media (max-width: 576px) {
    html {
      font-size: 55%;
    }
    
    .section {
      padding: 6rem 0;
    }
    
    .hero-title {
      font-size: 4rem;
    }
    
    .hero-cta {
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .timeline-filter {
      flex-wrap: wrap;
      justify-content: center;
      border-radius: 10px;
    }
    
    .filter-btn {
      padding: 0.8rem 1.5rem;
    }
    
    .footer-links {
      grid-template-columns: 1fr;
    }
  }