/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: 142 69% 58%; /* #4CAF50 */
    --primary-dark: 142 69% 45%; /* #388E3C */
    --secondary: 45 100% 60%; /* #FF9800 */
    --background: 210 11% 98%; /* #F5F7FA */
    --surface: 0 0% 100%; /* #FFFFFF */
    --text-primary: 220 13% 18%; /* #2C3E50 */
    --text-secondary: 215 14% 34%; /* #546E7A */
    --text-muted: 210 11% 71%; /* #B0BEC5 */
    --border: 210 16% 93%; /* #E8EAF0 */
    --shadow: 210 40% 8% / 0.1; /* rgba(13, 27, 62, 0.1) */
    --gradient: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: hsl(var(--text-primary));
    background-color: hsl(var(--background));
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: hsl(var(--text-secondary));
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px hsla(var(--shadow));
}

.btn-secondary {
    background-color: hsl(var(--surface));
    color: hsl(var(--primary));
    border: 2px solid hsl(var(--primary));
}

.btn-secondary:hover {
    background-color: hsl(var(--primary));
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #03581d;
    border: 2px solid hsl(var(--primary));
}

.btn-outline:hover {
    background-color: hsl(var(--primary));
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: hsl(var(--text-primary));
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: hsl(var(--surface));
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-option {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid hsl(var(--border));
    border-radius: 8px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.cookie-option p {
    margin-top: 8px;
    font-size: 0.9rem;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Header */
.header {
    background-color: hsl(var(--surface));
    box-shadow: 0 2px 10px hsla(var(--shadow));
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.nav-brand:hover {
    opacity: 0.8;
    text-decoration: none;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: hsl(var(--text-primary));
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: hsl(var(--primary));
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: hsl(var(--text-primary));
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--gradient);
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 60%;
    height: 60%;
    object-fit: contain;
    opacity: 0.08;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: hsl(var(--surface));
}

.services h2 {
    text-align: center;
    color: hsl(var(--text-primary));
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: hsl(var(--text-secondary));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px hsla(var(--shadow));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px hsla(var(--shadow));
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: hsl(var(--text-primary));
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: hsl(var(--background));
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    list-style: none;
    margin: 2rem 0;
}

.about-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.about-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(var(--primary));
    font-weight: bold;
}

.about-icon {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: hsl(var(--surface));
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

/* Newsletter Section */
.newsletter {
    padding: 6rem 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    margin-bottom: 1rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 1rem;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

/* Form Styles - Contact and Newsletter Forms */
.contact-form,
.newsletter-subscription-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: hsl(var(--surface));
    border-radius: 12px;
    box-shadow: 0 4px 20px hsla(var(--shadow));
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: hsl(var(--text-primary));
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid hsl(var(--border));
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: hsl(var(--surface));
    color: hsl(var(--text-primary));
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsla(var(--primary) / 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

/* Checkbox and radio styling */
.form-checkbox,
.form-radio {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-checkbox input[type="checkbox"],
.form-radio input[type="radio"] {
    width: auto;
    margin: 0;
    margin-top: 0.25rem;
}

.form-checkbox label,
.form-radio label {
    margin: 0;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Required field indicator */
.required {
    color: hsl(var(--secondary));
}

/* Form error states */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #f44336;
}

.form-error {
    color: #f44336;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Form success states */
.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: hsl(var(--primary));
}

/* Newsletter specific form styles */
.newsletter-subscription-form .form-group {
    margin-bottom: 1.25rem;
}

.newsletter-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.newsletter-categories .form-checkbox {
    margin-bottom: 0.5rem;
}

.newsletter-privacy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: hsl(var(--background));
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: hsl(var(--surface));
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: hsl(var(--background));
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: hsl(var(--surface));
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
}

/* Footer */
.footer {
    background-color: hsl(var(--text-primary));
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: hsl(var(--primary));
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.25rem 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: hsl(var(--primary));
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background-color: hsl(var(--primary));
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: hsl(var(--surface));
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
}

/* Page-specific hero sections */
.contact-hero,
.newsletter-hero,
.service-hero,
.about-hero {
    position: relative;
    padding: 4rem 0;
    background: var(--gradient);
    color: white;
    text-align: center;
    overflow: hidden;
    min-height: 60vh;
}

.contact-hero-content,
.newsletter-hero-content,
.service-hero-content,
.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-hero h1,
.newsletter-hero h1,
.service-hero h1,
.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Reduce background image sizes for all pages */
.page-background,
.contact-hero::before,
.newsletter-hero::before,
.service-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40%;
    height: 40%;
    transform: translate(-50%, -50%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
}

/* Benefit icons and other decorative images */
.benefit-icon,
.feature-icon,
.about-icon,
.corporate-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

/* Contact and info icons */
.contact-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

/* Additional size adjustments for all decorative images */
.hero img,
.contact-hero img,
.newsletter-hero img,
.service-hero img,
.about-hero img,
.thank-you img,
.mission img,
.values img {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
}

/* Ensure all SVG backgrounds are properly sized */
.hero-background svg,
.page-background svg {
    width: 30%;
    height: 30%;
    max-width: 300px;
    max-height: 300px;
}

/* Global image size restrictions for all pages */
img.nutrition-icon,
img.education-icon,
img.recipe-icon,
img.consultation-icon,
img.service1-icon,
img.service2-icon,
img.service3-icon,
img.service4-icon,
img.hero-bg,
img.about-icon,
img.mission-icon,
img.values-icon,
.corporate-icon,
.value-icon,
.team-member-photo,
.step-icon,
.benefit-icon {
    max-width: 80px !important;
    max-height: 80px !important;
    width: auto;
    height: auto;
}

/* More specific restrictions for very large images */
.about img,
.mission img,
.values img,
.service-intro img,
.service-details img,
.service-process img,
.contact-info img,
.newsletter-benefits img,
.sample-content img {
    max-width: 100px !important;
    max-height: 100px !important;
}

/* Reduce service card icons further */
.service-icon {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 1rem;
}

/* Specific overrides for overly large background images */
.about-hero::before,
.service-hero::before,
.thank-you::before {
    background-size: 200px 200px !important;
    opacity: 0.03 !important;
}

/* Thank you page styles */
.thank-you {
    padding: 6rem 0;
    background-color: hsl(var(--background));
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.thank-you h1 {
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.thank-you-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thank-you-details {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px hsla(var(--shadow));
    margin-bottom: 2rem;
}

.thank-you-details ul {
    list-style: none;
    text-align: left;
}

.thank-you-details li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.thank-you-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(var(--primary));
    font-weight: bold;
}

/* Mission and team sections */
.mission,
.team,
.values {
    padding: 4rem 0;
}

.mission-content,
.values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-icon,
.values-icon,
.team-member-photo {
    width: 80px !important;
    height: 80px !important;
    margin-bottom: 1.5rem;
}

/* Value items grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background-color: hsl(var(--surface));
    border-radius: 12px;
    box-shadow: 0 4px 20px hsla(var(--shadow));
}

.value-item img {
    max-width: 60px !important;
    max-height: 60px !important;
    margin-bottom: 1rem;
}

/* Service page specific styles */
.service-intro,
.service-details,
.service-process,
.service-pricing {
    padding: 4rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px hsla(var(--shadow));
}

.step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

/* Pricing cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px hsla(var(--shadow));
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin: 1rem 0;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(var(--primary));
}

/* Extreme size restrictions for all images - force smaller sizes */
section img,
div img,
.container img,
main img {
    max-width: 80px !important;
    max-height: 80px !important;
}

/* Override for logo only */
.logo {
    max-width: 40px !important;
    max-height: 40px !important;
}

/* Contact info icons should be even smaller */
.contact-info img,
.contact-card img,
.info-card img {
    max-width: 50px !important;
    max-height: 50px !important;
}

/* Benefits and features sections */
.benefits-grid img,
.features-grid img,
.benefits-section img {
    max-width: 60px !important;
    max-height: 60px !important;
}

/* Newsletter and sample content */
.newsletter-benefits img,
.sample-content img,
.benefit-card img {
    max-width: 50px !important;
    max-height: 50px !important;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .hero-bg-image {
        width: 40%;
        height: 40%;
    }
    
    .benefit-icon,
    .feature-icon,
    .about-icon,
    .corporate-icon,
    .thank-you-icon,
    .mission-icon,
    .values-icon,
    .step-icon {
        width: 40px !important;
        height: 40px !important;
    }
    
    .hero img,
    .contact-hero img,
    .newsletter-hero img,
    .service-hero img,
    .about-hero img {
        max-width: 60px !important;
        max-height: 60px !important;
    }
    
    .mission-content,
    .values-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-member-photo {
        width: 60px !important;
        height: 60px !important;
    }
    
    section img,
    div img,
    .container img,
    main img {
        max-width: 50px !important;
        max-height: 50px !important;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.faq-question:focus {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
