/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Teal/Aqua Color Palette */
    --teal-primary: #20B2AA;
    --teal-light: #7FFFD4;
    --teal-dark: #008B8B;
    --aqua: #00CED1;
    --aqua-light: #E0F7FA;
    
    /* Neutral Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-section: #fafbfc;
    
    /* Spacing System (8px grid) */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-hero: 40px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(32, 178, 170, 0.08);
    --shadow-md: 0 4px 16px rgba(32, 178, 170, 0.12);
    --shadow-lg: 0 8px 32px rgba(32, 178, 170, 0.16);
    --shadow-hover: 0 12px 40px rgba(32, 178, 170, 0.2);
    
    /* Border */
    --border-color: #e0e0e0;
    
    /* Animation */
    --animation-duration: 0.3s;
    --animation-timing: cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Max Content Width */
    --max-width: 1200px;
}

@media (prefers-reduced-motion: reduce) {
    :root {
        --animation-duration: 0s;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--aqua) 100%);
    color: white;
    padding: var(--spacing-xs) 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.advertorial-label {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.top-bar-contact a {
    color: white;
    text-decoration: none;
    transition: opacity var(--animation-duration) var(--animation-timing);
}

.top-bar-contact a:hover {
    opacity: 0.8;
}

.separator {
    opacity: 0.6;
}

/* Header */
.main-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-md) 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--teal-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--animation-duration) var(--animation-timing);
}

.logo:hover {
    color: var(--teal-primary);
}

.header-nav {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color var(--animation-duration) var(--animation-timing);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-primary);
    transition: width var(--animation-duration) var(--animation-timing);
}

.nav-link:hover {
    color: var(--teal-primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--aqua-light) 0%, #f0f9ff 100%);
}

.hero-bg-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--teal-light);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--aqua);
    top: 50%;
    right: -50px;
    animation-delay: 5s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--teal-primary);
    bottom: -100px;
    left: 30%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-panel {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: var(--radius-hero);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s var(--animation-timing);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 0.8s var(--animation-timing) 0.2s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-headline {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subheadline {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.hero-bullets {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.hero-bullets li {
    padding: var(--spacing-xs) 0 var(--spacing-xs) var(--spacing-lg);
    position: relative;
    color: var(--text-secondary);
    font-size: 16px;
}

.hero-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal-primary);
    font-weight: 700;
    font-size: 18px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--aqua) 100%);
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 18px;
    transition: all var(--animation-duration) var(--animation-timing);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-primary) 100%);
}

.cta-button:focus {
    outline: 3px solid rgba(32, 178, 170, 0.3);
    outline-offset: 2px;
}

.cta-button-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 20px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.hero-disclaimer-note {
    margin-top: var(--spacing-md);
    font-size: 13px;
    color: var(--text-light);
}

.hero-image-container {
    animation: fadeInRight 0.8s var(--animation-timing) 0.2s both;
    text-align: center;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-product-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    background: white;
    padding: var(--spacing-md);
}

/* Section Styles */
section {
    padding: var(--spacing-3xl) 0;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: var(--spacing-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works-section {
    background: var(--bg-section);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-card {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--animation-duration) var(--animation-timing);
    border: 1px solid rgba(32, 178, 170, 0.1);
    opacity: 0;
}

.feature-card.fade-in-visible {
    opacity: 1;
    animation: fadeInUp 0.6s var(--animation-timing);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(32, 178, 170, 0.2);
}

.feature-icon,
.feature-image {
    width: 180px;
    height: 180px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-primary);
    border-radius: var(--radius-md);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--animation-duration) var(--animation-timing);
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.feature-icon svg,
.feature-image svg {
    width: 100%;
    height: 100%;
    padding: var(--spacing-sm);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: center;
}

/* Ingredients Section */
.ingredients-section {
    background: var(--bg-white);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.ingredient-item {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--teal-primary);
    transition: all var(--animation-duration) var(--animation-timing);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ingredient-item.fade-in-visible {
    opacity: 1;
    animation: fadeInUp 0.6s var(--animation-timing);
}

.ingredient-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.ingredient-image {
    width: 120px;
    height: 120px;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--animation-duration) var(--animation-timing);
    overflow: hidden;
}

.ingredient-item:hover .ingredient-image {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.ingredient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.ingredient-image svg {
    width: 100%;
    height: 100%;
    padding: var(--spacing-sm);
}

.ingredient-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    width: 100%;
}

.ingredient-latin {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    width: 100%;
}

/* Dosage Section */
.dosage-section {
    background: var(--bg-section);
}

.dosage-card {
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.05) 0%, rgba(0, 206, 209, 0.05) 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
}

.dosage-card.fade-in-visible {
    opacity: 1;
    animation: fadeInUp 0.6s var(--animation-timing);
}

.dosage-content {
    margin-top: var(--spacing-lg);
}

.dosage-info {
    margin-bottom: var(--spacing-lg);
}

.dosage-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.dosage-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 16px;
}

.dosage-details {
    display: flex;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.dosage-detail-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.dosage-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.dosage-value {
    font-size: 18px;
    color: var(--teal-primary);
    font-weight: 600;
}

/* Offer Section */
.offer-section {
    background: var(--bg-white);
}

.offer-card {
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--aqua) 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
    color: white;
    opacity: 0;
}

.offer-card.fade-in-visible {
    opacity: 1;
    animation: fadeInUp 0.6s var(--animation-timing);
}

.offer-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.offer-image-wrapper {
    flex: 0 0 auto;
    text-align: center;
}

.offer-product-image {
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    background: white;
    padding: var(--spacing-sm);
}

.offer-text {
    flex: 1 1 300px;
    text-align: center;
}

.offer-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.offer-description {
    font-size: 18px;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.offer-details {
    margin-bottom: var(--spacing-xl);
}

.offer-detail {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.offer-label {
    font-size: 16px;
    opacity: 0.9;
}

.offer-value {
    font-size: 18px;
    font-weight: 600;
}

.offer-card .cta-button {
    background: white;
    color: var(--teal-primary);
}

.offer-card .cta-button:hover {
    background: var(--bg-light);
    color: var(--teal-dark);
}

/* Disclaimers Section */
.disclaimers-section {
    background: var(--bg-section);
}

.disclaimers-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 193, 7, 0.3);
    max-width: 900px;
    margin: 0 auto;
}

.disclaimers-content {
    margin-top: var(--spacing-lg);
}

.disclaimer-block {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.disclaimer-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.disclaimer-main {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
}

.disclaimer-block p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.disclaimer-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.faq-item {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--teal-primary);
    transition: all var(--animation-duration) var(--animation-timing);
    opacity: 0;
}

.faq-item.fade-in-visible {
    opacity: 1;
    animation: fadeInUp 0.6s var(--animation-timing);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    background: var(--bg-section);
}

.contact-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
}

.contact-card.fade-in-visible {
    opacity: 1;
    animation: fadeInUp 0.6s var(--animation-timing);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.contact-item a {
    color: var(--teal-primary);
    text-decoration: none;
    font-size: 16px;
    transition: color var(--animation-duration) var(--animation-timing);
}

.contact-item a:hover {
    color: var(--teal-dark);
    text-decoration: underline;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: var(--spacing-md);
    color: white;
}

.footer-section p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--animation-duration) var(--animation-timing);
}

.footer-section a:hover {
    color: var(--teal-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--animation-duration) var(--animation-timing);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--teal-light);
}

.footer-disclosures {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.disclosure-item {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
}

.disclosure-item:last-child {
    margin-bottom: 0;
}

.disclosure-item p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--spacing-md);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --spacing-3xl: 64px;
        --spacing-2xl: 48px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .hero-headline {
        font-size: 36px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .hero-panel {
        padding: var(--spacing-xl);
        border-radius: var(--radius-lg);
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    .features-grid,
    .ingredients-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-nav {
        width: 100%;
        justify-content: flex-start;
        gap: var(--spacing-md);
    }

    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }

    .dosage-details {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .contact-info {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .offer-content {
        flex-direction: column;
        text-align: center;
    }

    .offer-image-wrapper {
        width: 100%;
    }

    .offer-product-image {
        max-width: 200px;
    }

    .feature-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
    }

    .section-title {
    font-size: 28px;
    }

    .hero-panel {
        padding: var(--spacing-lg);
    }

    .feature-card,
    .faq-item,
    .ingredient-item {
        padding: var(--spacing-md);
    }

    .dosage-card,
    .offer-card,
    .contact-card,
    .disclaimers-card {
        padding: var(--spacing-lg);
    }

    .cta-button {
        padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 16px;
    }

    .cta-button-large {
        font-size: 18px;
    }

    .offer-product-image {
        max-width: 180px;
    }

    .offer-content h3 {
        font-size: 28px;
    }

    .feature-image {
        width: 120px;
        height: 120px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
a:focus,
button:focus,
.cta-button:focus {
    outline: 3px solid rgba(32, 178, 170, 0.5);
    outline-offset: 2px;
}

/* Order Form Styles */
.order-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.order-form-wrapper .section-title {
    font-size: 32px;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    color: var(--text-primary);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    transition: all var(--animation-duration) var(--animation-timing);
    background: var(--bg-white);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-primary);
    box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-weight: normal;
    cursor: pointer;
    line-height: 1.6;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--teal-primary);
    text-decoration: none;
    transition: color var(--animation-duration) var(--animation-timing);
}

.checkbox-label a:hover {
    color: var(--teal-dark);
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--aqua) 100%);
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--animation-duration) var(--animation-timing);
    margin-top: var(--spacing-sm);
    box-shadow: var(--shadow-md);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-primary) 100%);
}

.submit-btn:focus {
    outline: 3px solid rgba(32, 178, 170, 0.3);
    outline-offset: 2px;
}

.form-note {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    margin-top: var(--spacing-md);
    line-height: 1.6;
}

.message-success,
.message-error {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-lg);
    font-size: 15px;
    line-height: 1.6;
}

.message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Print Styles */
@media print {
    .top-bar,
    .main-header,
    .main-footer {
        display: none;
    }
}
