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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-primary {
    background-color: #d4a574;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #c19563;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 28px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d4a574;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.hero-section {
    margin-bottom: 60px;
}

.hero-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #e8d7c3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
}

.intro-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c2c2c;
    font-weight: 400;
}

.intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.problem-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.problem-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    max-width: 350px;
    flex: 1;
    min-width: 280px;
}

.problem-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e8d7c3;
}

.problem-card h3 {
    font-size: 22px;
    margin: 20px 20px 15px;
    color: #2c2c2c;
}

.problem-card p {
    font-size: 16px;
    margin: 0 20px 20px;
    color: #666;
}

.insight-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.insight-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.insight-text {
    flex: 1;
    min-width: 300px;
}

.insight-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.insight-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.insight-text a {
    color: #d4a574;
    text-decoration: none;
}

.insight-text a:hover {
    text-decoration: underline;
}

.insight-image {
    flex: 1;
    min-width: 300px;
}

.insight-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8d7c3;
}

.trust-section {
    padding: 60px 0;
    background-color: #2c2c2c;
    color: #ffffff;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #d4a574;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
}

.testimonials-section {
    padding: 60px 0;
    background-color: #f9f4ef;
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c2c2c;
}

.testimonial-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    background-color: #ffffff;
    padding: 30px;
    border-left: 4px solid #d4a574;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.testimonial cite {
    font-size: 14px;
    color: #666;
    font-style: normal;
}

.collections-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.collections-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c2c2c;
}

.collection-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.collection-card {
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 360px;
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.collection-card.selected {
    border: 3px solid #d4a574;
}

.collection-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e8d7c3;
}

.collection-card h3 {
    font-size: 24px;
    margin: 20px 20px 15px;
    color: #2c2c2c;
}

.collection-card p {
    font-size: 15px;
    margin: 0 20px 15px;
    color: #666;
}

.collection-card .ingredients {
    font-size: 13px;
    color: #888;
    font-style: italic;
    margin: 0 20px 20px;
}

.collection-card .price {
    font-size: 28px;
    font-weight: 600;
    color: #d4a574;
    margin: 0 20px 20px;
}

.btn-select {
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 16px;
    margin-top: auto;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #d4a574;
}

.form-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.selected-service {
    font-size: 18px;
    color: #d4a574;
    margin-bottom: 30px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
}

.btn-submit {
    background-color: #d4a574;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #c19563;
}

.disclaimer-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.disclaimer {
    font-size: 13px;
    color: #666;
    text-align: center;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 50px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #d4a574;
}

.footer-col p {
    font-size: 14px;
    color: #ccc;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #d4a574;
}

.references {
    list-style: decimal;
    padding-left: 20px;
}

.references li {
    margin-bottom: 10px;
}

.references a {
    color: #ccc;
    font-size: 13px;
    text-decoration: none;
}

.references a:hover {
    color: #d4a574;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 5px;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    padding: 60px 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.thanks-content .btn-primary {
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;
}

.page-header {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 300;
}

.content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.content-section h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.content-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

.content-section ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-section ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.contact-info {
    background-color: #f9f4ef;
    padding: 40px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.about-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    object-fit: cover;
    background-color: #e8d7c3;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .insight-wrapper {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }
}
