/* Remove :root and integrate colors directly */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #F8F9FA;
}

/* Enhanced Top Bar */
.citrus-topbar {
    background: linear-gradient(135deg, #aee8f6 0%, #b0e7f2 100%);
    padding: 12px 40px;
    color: #FFFFFF;
}

.citrus-topbar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.citrus-contact-info {
    display: flex;
    gap: 24px;
}

.citrus-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #000000;
    text-decoration: none;
}

.citrus-contact-item:hover {
    transform: translateY(-2px);
}

.citrus-contact-item i {
    font-size: 16px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
}

.citrus-social-links {
    display: flex;
    gap: 15px;
}

.citrus-social-link {
    color: #000000;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.citrus-social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Main Navigation */
.citrus-nav {
    background: #FFFFFF;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
}

.citrus-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.citrus-logo {
    display: flex;
    align-items: center;
}

.citrus-logo img {
    transform: scale(2.5);
    height: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.citrus-logo:hover img {
    transform: scale(2.5);
}

.citrus-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.citrus-link {
    color: #FF4500;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.citrus-link:hover {
    background: #FFE6DC;
    color: #FF6B35;
}

.citrus-dropdown {
    position: relative;
}

.citrus-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    min-width: 250px;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #FFE6DC;
}

.citrus-dropdown:hover .citrus-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.citrus-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #FF4500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.citrus-dropdown-item:hover {
    background: #FFE6DC;
    color: #FF6B35;
    transform: translateX(5px);
}

.event {
    padding: 15px;
    border-bottom: 1px solid #FFE6DC;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.event:hover {
    background: #FFE6DC;
}

.event i {
    color: #FF6B35;
    font-size: 20px;
}

.event span {
    flex: 1;
}

.event strong {
    display: block;
    color: #FF4500;
    margin-bottom: 4px;
}

.event small {
    color: #666666;
}

.contact-group {
    padding: 15px;
    border-bottom: 1px solid #FFE6DC;
}

.contact-group h4 {
    color: #FF4500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    color: #666666;
    text-decoration: none;
}

.whatsapp-btn {
    background: #25D366;
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-btn:hover {
    background: #128C7E;
}

.citrus-signin {
    background: linear-gradient(135deg, #FF6B35, #FF4500);
    color: #FFFFFF;
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.citrus-signin:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.citrus-mobile-toggle {
    display: none;
    font-size: 24px;
    color: #FF6B35;
    cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .citrus-topbar {
        display: none;
    }
    
    .citrus-nav {
        padding: 15px 20px;
    }
    
    .citrus-mobile-toggle {
        display: block;
    }
    
    .citrus-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        padding: 20px;
        flex-direction: column;
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .citrus-menu.active {
        display: flex;
    }
    
    .citrus-dropdown {
        width: 100%;
    }
    
    .citrus-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        margin-top: 10px;
        width: 100%;
    }
    
    .citrus-dropdown.active .citrus-dropdown-menu {
        display: block;
    }

    .mobile-social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
        padding: 15px 0;
        border-top: 1px solid #FFE6DC;
    }

    .mobile-social-links a {
        color: #FF4500;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #FFE6DC;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-social-links a:hover {
        background: #FF6B35;
        color: #FFFFFF;
    }
}

@media (max-width: 768px) {
    /* Previous mobile styles remain the same */
    
    .citrus-nav-container {
        display: flex;
        justify-content: space-between; /* Creates space between logo and menu icon */
        align-items: center;
        padding: 0 10px; /* Optional: adds some padding on sides */
        gap: 150px; /* Creates specific gap between logo and menu icon */
    }

    /* OR alternatively, you can add margin to the menu icon */
    .citrus-mobile-toggle {
        display: block;
        margin-left: 20px; /* Adjusts space between logo and menu icon */
    }
}


/* Header Section */
.header {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: bgMove 20s infinite alternate;
}

@keyframes bgMove {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.header-content {
    position: relative;
    z-index: 1;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Container */
.main-container {
    max-width: 1200px;
    margin: -30px auto 50px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Form Card */
.form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Progress Bar */
.progress-bar {
    padding: 30px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e2e8f0;
    transform: translateY(-50%);
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #64748b;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

.progress-step.completed {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

.step-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    font-size: 0.9rem;
    color: #64748b;
    white-space: nowrap;
}

/* Form Content */
.form-content {
    padding: 40px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1e293b;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    border-color: #2563eb;
    background: rgba(37,99,235,0.05);
}

/* File Upload */
.upload-section {
    margin-top: 30px;
}

.dropzone {
    border: 2px dashed #e2e8f0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropzone:hover {
    border-color: #2563eb;
    background: rgba(37,99,235,0.05);
}

.upload-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 15px;
}

.upload-text {
    margin-bottom: 10px;
    color: #1e293b;
}

.upload-hint {
    font-size: 0.9rem;
    color: #64748b;
}

/* Navigation Buttons */
.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.nav-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.prev-btn {
    background: #f1f5f9;
    color: #1e293b;
    border: none;
}

.next-btn, 
.submit-btn {
    background: #2563eb;
    color: white;
    border: none;
}

.prev-btn:hover {
    background: #e2e8f0;
}

.next-btn:hover,
.submit-btn:hover {
    background: #1d4ed8;
}

/* Success Modal */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.success-icon {
    width: 70px;
    height: 70px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.modal-content h3 {
    color: #1e293b;
    margin-bottom: 10px;
}

.modal-content p {
    color: #64748b;
    margin-bottom: 20px;
}

.close-modal {
    padding: 10px 25px;
    background: #f1f5f9;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #e2e8f0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .progress-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .progress-steps::before {
        display: none;
    }

    .step-label {
        position: static;
        transform: none;
        margin-top: 5px;
    }

    .form-nav {
        flex-direction: column;
        gap: 15px;
    }

    .nav-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Footer Styling */
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #f4f4f4;
}

.footer p,
.footer ul,
.footer a {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    text-decoration: none;
    color: #ccc;
}

.footer ul li a:hover {
    color: #007bff;
}

.footer-contact p a {
    text-decoration: none;
    color: #ccc;
}

.footer-contact p a:hover {
    color: #007bff;
}

.footer-social .social-icons {
    display: flex;
    gap: 10px;
}

.footer-social .social-icons a {
    color: #ccc;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social .social-icons a:hover {
    color: #007bff;
    border-color: #007bff;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #aaa;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-about,
    .footer-links,
    .footer-contact,
    .footer-social {
        min-width: unset;
    }
}

.footer-advertisement {
    flex: 1;
    min-width: 200px;
    text-align: center;
  }
  .ad-inquiry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 12px 18px;
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .ad-inquiry:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  .ad-inquiry img {
    width: 24px;
    height: 24px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: #aaa;
  }
  
  /* Modal Styling */
  .modal {
    display: none;
    position: fixed;
    z-index: 1500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    overflow-y: auto;
    padding: 20px;
  }
  .modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
    animation: modalEnter 0.4s ease-out;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  }
  @keyframes modalEnter {
    from {
      opacity: 0;
      transform: translateY(-40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 26px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    transition: color 0.3s;
  }
  .close-btn:hover {
    color: #ff6b00;
  }
  
  /* Form Styling */
  .ad-form .form-group {
    margin-bottom: 20px;
  }
  .ad-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
  }
  .ad-form input,
  .ad-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
  }
  .ad-form input:focus,
  .ad-form textarea:focus {
    border-color: #ff6b00;
    outline: none;
  }
  .ad-form textarea {
    resize: vertical;
    min-height: 100px;
  }
  .submit-btn {
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .submit-btn:hover {
    background: #e65a00;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  }
  @media (max-width: 480px) {
    .footer {
      padding: 30px 10px;
    }
    .ad-inquiry {
      padding: 10px 15px;
    }
  }
  

  
  h1 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
    font-size: 28px;
  }
  
  .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
  }
  
  .subscription-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .input-group {
    position: relative;
    width: 100%;
  }
  
  .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 18px;
  }
  
  input,
  select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
  }
  
  input:focus,
  select:focus {
    outline: none;
    border-color: #ff6b00;
  }
  
  select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
  }
  
  button {
    background-color: #ff6b00;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #ff5500;
  }
  
  .notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    transform: translateY(100px);
    transition: transform 0.3s ease;
  }
  
  .notification.success {
    background-color: #4caf50;
    transform: translateY(0);
  }
  
  .notification.error {
    background-color: #f44336;
    transform: translateY(0);
  }
  
  @media (max-width: 600px) {
    .container {
      padding: 20px;
    }
  
    h1 {
      font-size: 24px;
    }
  
    .subtitle {
      font-size: 14px;
    }
  
    input,
    select,
    button {
      padding: 12px;
      font-size: 14px;
    }
  }
  
.inquiry-column {
    background-color: #0073e6;
    color: white;
    padding: 20px;
    cursor: pointer;
    width: 280px;
    text-align: center;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.3s;
}
.inquiry-column:hover {
    background-color: #005bb5;
}
.inquiry-column img {
    width: 28px;
    height: 28px;
}
.popup-form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    width: 550px;
    border-radius: 12px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.popup-form h2 {
    margin-bottom: 20px;
    color: #0073e6;
}
.close-btn {
    float: right;
    cursor: pointer;
    font-size: 22px;
    color: #ff4d4d;
}
.close-btn:hover {
    color: #cc0000;
}
input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}
textarea {
    height: 100px;
    resize: none;
}


.bannerfold {
    padding: 4rem 2rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #fff6e9 0%, #ffe8d1 100%);
};


h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-in;
}

.description {
    font-size: 1.2rem;
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-button {
    background: var(--accent-color);
    color: rgb(254, 68, 0);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    .description {
        font-size: 1rem;
    }
}