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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.ad-notice {
    background-color: #f4f1ed;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid #e0dcd5;
}

.floating-nav {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    min-width: 700px;
}

.nav-brand {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #5a5a5a;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

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

.hero-visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #d4c4b0;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    width: 80%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 68px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.story-intro {
    padding: 100px 20px;
    background-color: #fff;
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-content p {
    font-size: 19px;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.story-content img {
    width: 100%;
    height: auto;
    margin: 50px 0;
    object-fit: cover;
    background-color: #e8dfd4;
}

.problem-amplification {
    background-color: #f8f5f1;
    padding: 120px 20px;
}

.wide-content {
    max-width: 1100px;
    margin: 0 auto;
}

.wide-content h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.visual-block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-block img {
    width: 100%;
    max-width: 900px;
    height: auto;
    object-fit: cover;
    background-color: #d8cfc4;
}

.text-overlay {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    max-width: 600px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.text-overlay p {
    font-size: 18px;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.insight-reveal {
    padding: 100px 20px;
    background-color: #fff;
}

.centered-insight {
    max-width: 800px;
    margin: 0 auto;
}

.centered-insight h2 {
    font-size: 44px;
    font-weight: 400;
    margin-bottom: 35px;
    color: #1a1a1a;
    text-align: center;
}

.centered-insight p {
    font-size: 19px;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.ingredient-highlight {
    background-color: #f9f6f2;
    padding: 40px;
    margin-top: 50px;
    border-left: 4px solid #a89279;
}

.ingredient-highlight h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.ingredient-highlight ul {
    list-style: none;
    margin-bottom: 25px;
}

.ingredient-highlight li {
    font-size: 17px;
    color: #5a5a5a;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.ingredient-highlight li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #a89279;
    font-weight: bold;
}

.reference-note {
    font-size: 15px;
    color: #666;
    font-style: italic;
}

.reference-note a {
    color: #7d6e5d;
    text-decoration: none;
    border-bottom: 1px solid #7d6e5d;
}

.trust-building {
    padding: 100px 20px;
    background-color: #f3ede6;
}

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-flow h2 {
    font-size: 44px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
}

.testimonial-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.testimonial-card:nth-child(odd) {
    flex-direction: row;
}

.testimonial-card:nth-child(even) {
    flex-direction: row-reverse;
}

.testimonial-card img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    background-color: #d4c8bb;
}

.testimonial-card blockquote {
    flex: 1;
}

.testimonial-card p {
    font-size: 20px;
    color: #3a3a3a;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 16px;
    color: #7a7a7a;
    font-style: normal;
}

.collection-preview {
    padding: 100px 20px;
    background-color: #fff;
}

.visual-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.visual-grid h2 {
    font-size: 48px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
}

.collection-card {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: flex-start;
}

.collection-card:nth-child(even) {
    flex-direction: row-reverse;
}

.collection-card img {
    width: 400px;
    height: 500px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #e5ddd2;
}

.card-info {
    flex: 1;
    padding-top: 40px;
}

.card-info h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.card-info p {
    font-size: 17px;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 15px;
}

.subtle-price {
    font-size: 28px;
    color: #8b7d6b;
    margin: 20px 0;
    font-weight: 400;
}

.select-service {
    background-color: #2a2a2a;
    color: #fff;
    border: none;
    padding: 14px 35px;
    font-size: 15px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.select-service:hover {
    background-color: #1a1a1a;
}

.form-section {
    padding: 100px 20px;
    background-color: #f7f3ef;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.form-container > p {
    text-align: center;
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 40px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input,
select,
textarea {
    padding: 15px;
    font-size: 16px;
    border: 1px solid #d0c4b8;
    background-color: #fff;
    font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #8b7d6b;
}

button[type="submit"] {
    background-color: #2a2a2a;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 16px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #1a1a1a;
}

.final-cta {
    position: relative;
}

.cta-visual {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: #c9baa8;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
}

.cta-overlay h2 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #2a2a2a;
    padding: 16px 50px;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: #2a2a2a;
    color: #fff;
}

.site-footer {
    background-color: #2a2a2a;
    color: #c4c4c4;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 400;
}

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

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

.footer-section a {
    color: #c4c4c4;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #8b7d6b;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a4a4a;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(42, 42, 42, 0.98);
    color: #fff;
    padding: 25px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    min-width: 300px;
}

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

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

.cookie-buttons button {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
}

#acceptCookies {
    background-color: #8b7d6b;
    color: #fff;
}

#acceptCookies:hover {
    background-color: #a89279;
}

#rejectCookies {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

#rejectCookies:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: #d4c4b0;
    margin-top: 120px;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.about-story {
    padding: 100px 20px;
    background-color: #fff;
}

.services-layout {
    padding: 80px 20px;
    background-color: #fff;
}

.service-card-full {
    max-width: 1200px;
    margin: 0 auto 120px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.service-card-full:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex-shrink: 0;
}

.service-image img {
    width: 450px;
    height: 550px;
    object-fit: cover;
    background-color: #e5ddd2;
}

.service-details {
    flex: 1;
    padding-top: 20px;
}

.service-details h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.service-subtitle {
    font-size: 16px;
    color: #8b7d6b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.composition {
    background-color: #f9f6f2;
    padding: 25px;
    margin-bottom: 25px;
}

.composition h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.composition p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 10px;
}

.service-description {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.price-display {
    font-size: 32px;
    color: #8b7d6b;
    margin: 25px 0;
    font-weight: 400;
}

.service-card-centered {
    max-width: 700px;
    margin: 60px auto;
    text-align: center;
    background-color: #f7f3ef;
    padding: 60px 40px;
}

.service-card-centered h2 {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.service-card-centered p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-note {
    font-size: 14px;
    color: #7a7a7a;
    font-style: italic;
    margin-bottom: 25px;
}

.contact-info {
    padding: 100px 20px;
    background-color: #fff;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-container h2 {
    font-size: 44px;
    font-weight: 400;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.info-block h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #2a2a2a;
}

.info-block p {
    font-size: 17px;
    color: #5a5a5a;
    line-height: 1.8;
}

.info-note {
    margin-top: 40px;
    background-color: #f9f6f2;
    padding: 30px;
}

.info-note p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.info-note a {
    color: #7d6e5d;
    text-decoration: none;
    border-bottom: 1px solid #7d6e5d;
}

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

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 19px;
    color: #5a5a5a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.button-link {
    display: inline-block;
    margin-top: 30px;
    background-color: #2a2a2a;
    color: #fff;
    padding: 14px 35px;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.button-link:hover {
    background-color: #1a1a1a;
}

.legal-page {
    padding: 100px 20px;
    background-color: #fff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3a3a3a;
}

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

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content em {
    color: #7a7a7a;
    font-size: 14px;
}

.legal-content a {
    color: #7d6e5d;
    text-decoration: none;
    border-bottom: 1px solid #7d6e5d;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.legal-content th,
.legal-content td {
    padding: 12px;
    text-align: left;
    border: 1px solid #d0c4b8;
    font-size: 15px;
}

.legal-content th {
    background-color: #f7f3ef;
    font-weight: 400;
    color: #2a2a2a;
}

@media (max-width: 768px) {
    .floating-nav {
        position: static;
        transform: none;
        flex-direction: column;
        min-width: auto;
        width: 100%;
        border-radius: 0;
    }

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

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

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

    .story-content h2,
    .wide-content h2,
    .centered-insight h2 {
        font-size: 32px;
    }

    .testimonial-card {
        flex-direction: column;
    }

    .testimonial-card:nth-child(even) {
        flex-direction: column;
    }

    .collection-card {
        flex-direction: column;
    }

    .collection-card:nth-child(even) {
        flex-direction: column;
    }

    .collection-card img {
        width: 100%;
    }

    .service-card-full {
        flex-direction: column;
    }

    .service-card-full:nth-child(even) {
        flex-direction: column;
    }

    .service-image img {
        width: 100%;
        height: auto;
    }

    .page-hero {
        margin-top: 0;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
    }
}