:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background: #ffffff;
    --light-background: #f3f4f6;
    --border-color: #e5e7eb;
    --success-color: #059669;
    --warning-color: #d97706;
    --section-spacing: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
}

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

/* Header/Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
}

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

.hero-text-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.hero-image {
    position: relative;
}

.product-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: var(--primary-color);
    padding: 1.2rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.order-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 1.5rem;
}

.order-button:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Danger Alert Section */
.danger-alert {
    padding: var(--section-spacing) 0;
    background-color: var(--light-background);
}

.alert-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.alert-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--warning-color);
}

.alert-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.warning-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    /* border-radius: 1rem; */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.study-highlight {
    background-color: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Product Intro Section */
.product-intro {
    padding: var(--section-spacing) 0;
}

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

.drops-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 1rem;
}

.benefits-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.1rem;
}

.benefits-list li::before {
    content: "✓";
    color: var(--success-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Ingredients Section */
.ingredients {
    padding: var(--section-spacing) 0;
    background-color: var(--light-background);
}

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

.ingredient-group {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ingredient-group:hover {
    transform: translateY(-5px);
}

.ingredient-image {
    margin-bottom: 1.5rem;
}

.ingredient-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-spacing) 0;
    background-color: var(--light-background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 3px solid var(--primary-color);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.verified {
    color: var(--success-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.quote {
    flex: 1;
    font-style: italic;
    margin: 0;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
}

/* Pricing Section */
.pricing {
    padding: var(--section-spacing) 0;
    background-color: var(--light-background);
}

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

.pricing-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.pricing-image {
    margin-bottom: 1.5rem;
}

.pricing-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

/* Guarantee Section */
.guarantee {
    padding: var(--section-spacing) 0;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-contact h4,
.footer-nav h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact p i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 0.8rem;
}

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

.footer-nav ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

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

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .footer-nav ul li {
        margin-bottom: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-spacing: 4rem;
    }

    .hero-content,
    .alert-content,
    .product-content,
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

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

.hero, .danger-alert, .product-intro, .ingredients, .testimonials, .pricing, .guarantee {
    animation: fadeIn 0.8s ease-out;
}

/* Bonuses Section */
.bonuses {
    padding: var(--section-spacing) 0;
    background-color: var(--light-background);
}

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

.bonus-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.bonus-image {
    margin-bottom: 1.5rem;
}

.bonus-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.bonus-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.bonus-price {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.strikethrough {
    text-decoration: line-through;
    color: var(--light-text);
}

.highlight {
    color: var(--success-color);
    font-weight: 600;
}

.shipping-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shipping-note h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* Shipping Info Section */
.shipping-info {
    padding: var(--section-spacing) 0;
}

.shipping-table {
    margin-top: 3rem;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background-color: var(--light-background);
}

/* Enhanced Pricing Cards */
.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

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

.bonus-note {
    color: var(--success-color);
    font-weight: 600;
    margin: 1rem 0;
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-image {
        width: 60px;
        height: 60px;
    }
}

/* FAQ Section */
.faq {
    padding: var(--section-spacing) 0;
    background-color: var(--light-background);
}

.faq-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.faq-item p + p {
    margin-top: 1rem;
}

/* Scientific References Section */
.scientific-references {
    padding: var(--section-spacing) 0;
}

.references-list {
    margin-top: 3rem;
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.references-list ol {
    list-style-position: inside;
    padding-left: 0;
}

.references-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    text-indent: -1.5rem;
    line-height: 1.6;
}

.references-list li:last-child {
    margin-bottom: 0;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .faq-item {
        padding: 1.5rem;
    }

    .references-list {
        padding: 1.5rem;
    }

    .references-list li {
        font-size: 0.9rem;
    }
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header .subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* About Page */
.about-section {
    padding: var(--section-spacing) 0;
}

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

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-text ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Privacy Policy Page */
.privacy-section {
    padding: var(--section-spacing) 0;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h2 {
    color: var(--primary-color);
    margin: 2.5rem 0 1.5rem;
    font-size: 2rem;
}

.privacy-content h3 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.privacy-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.privacy-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.privacy-content ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.privacy-content ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.last-updated {
    font-style: italic;
    color: var(--light-text);
    margin-top: 3rem;
    text-align: right;
}

/* Privacy Popup */
.privacy-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-width: 400px;
    display: none;
}

.privacy-popup.active {
    display: block;
    animation: slideIn 0.3s ease-out;
}

.popup-content {
    position: relative;
}

.close-popup {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background-color 0.3s;
}

.close-popup:hover {
    background: var(--secondary-color);
}

.privacy-popup p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.accept-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.accept-button:hover {
    background: var(--secondary-color);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header .subtitle {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .privacy-content {
        padding: 0 20px;
    }

    .privacy-popup {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

/* About Page Enhanced Styles */
.founder-quote,
.testimonial-highlight blockquote {
    background: var(--light-background);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
    font-style: italic;
    border-left: 4px solid var(--primary-color);
}

.founder-quote cite,
.testimonial-highlight cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: var(--light-text);
    font-size: 0.9rem;
}

.research-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.research-highlight h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.quality-process {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.quality-process h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.quality-process ol {
    list-style-position: inside;
    padding-left: 0;
}

.quality-process li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    text-indent: -1.5rem;
    line-height: 1.6;
}

.quality-process li:last-child {
    margin-bottom: 0;
}

.quality-process strong {
    color: var(--primary-color);
}

.disclaimer {
    background: var(--light-background);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Responsive Design Updates for About Page */
@media (max-width: 768px) {
    .founder-quote,
    .testimonial-highlight blockquote,
    .research-highlight,
    .quality-process,
    .disclaimer {
        padding: 1.5rem;
    }

    .quality-process li {
        font-size: 0.9rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: var(--section-spacing) 0;
    background-color: var(--light-background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info {
    padding-right: 2rem;
}

.contact-intro {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    min-width: 24px;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.info-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--light-background);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background-color: white;
}

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

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.form-group.checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
    cursor: pointer;
}

.submit-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.submit-button:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 2rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .contact-info {
        padding-right: 0;
    }

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

    .info-item {
        padding: 1.25rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .faq-section {
        padding: 0 1rem;
    }

    .faq-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.25rem;
    }

    .info-item {
        padding: 1rem;
    }

    .submit-button {
        padding: 0.875rem 1.5rem;
    }
}

/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 1rem;
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #4CAF50;
    text-decoration: underline;
}

.accept-cookies {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.accept-cookies:hover {
    background: #45a049;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .accept-cookies {
        width: 100%;
        max-width: 200px;
    }
}

.header-certifications {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 600px;
    height: auto;
}

@media (max-width: 768px) {
    .header-certifications {
        margin-top: 1rem;
        margin-bottom: 1rem;
        max-width: 95vw;
    }
} 