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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fdfcfb;
}

.ad-disclosure {
    background-color: #f8f5f1;
    color: #7a6f5d;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    border-bottom: 1px solid #e5ddd5;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #5d4e37;
}

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

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

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

.hero-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #e8e4de;
}

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

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background-color: rgba(93, 78, 55, 0.85);
    padding: 50px 60px;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.story-intro {
    padding: 80px 20px;
    background-color: #ffffff;
}

.story-container {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
}

.story-container p {
    margin-bottom: 25px;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 80px 40px;
    background-color: #f5f2ed;
    justify-content: center;
}

.card-item {
    background-color: #ffffff;
    max-width: 380px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

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

.card-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8e4de;
}

.card-item h3 {
    padding: 20px 25px 10px;
    font-size: 1.4rem;
    color: #5d4e37;
}

.card-item p {
    padding: 0 25px 25px;
    line-height: 1.7;
}

.testimonial-inline {
    padding: 70px 40px;
    background-color: #5d4e37;
    color: white;
}

.testimonial-inline blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-inline p {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 0.95rem;
    opacity: 0.9;
}

.composition-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.composition-content h2 {
    font-size: 2.2rem;
    color: #5d4e37;
    margin-bottom: 40px;
    text-align: center;
}

.ingredients-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ingredient-item {
    border-left: 4px solid #a08968;
    padding-left: 20px;
}

.ingredient-item strong {
    font-size: 1.2rem;
    color: #5d4e37;
    display: block;
    margin-bottom: 8px;
}

.ingredient-item p {
    line-height: 1.7;
}

.ingredient-item a {
    color: #a08968;
    text-decoration: none;
}

.ingredient-item a:hover {
    text-decoration: underline;
}

.benefits-reveal {
    padding: 80px 40px;
    background-color: #f5f2ed;
}

.benefits-reveal h2 {
    font-size: 2.2rem;
    color: #5d4e37;
    text-align: center;
    margin-bottom: 50px;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

.benefit-card {
    background-color: #ffffff;
    padding: 35px;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.benefit-card h4 {
    font-size: 1.3rem;
    color: #5d4e37;
    margin-bottom: 15px;
}

.benefit-card p {
    line-height: 1.7;
}

.services-pricing {
    padding: 80px 40px;
    background-color: #ffffff;
}

.services-pricing h2 {
    font-size: 2.2rem;
    color: #5d4e37;
    text-align: center;
    margin-bottom: 50px;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    background-color: #f5f2ed;
    padding: 35px;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.service-card.selected {
    border-color: #a08968;
    background-color: #ffffff;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #5d4e37;
    margin-bottom: 15px;
}

.service-card p {
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 80px;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #5d4e37;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 12px;
    background-color: #a08968;
    color: white;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.service-card.selected .btn-select {
    background-color: #5d4e37;
}

.form-section {
    padding: 80px 40px;
    background-color: #f5f2ed;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    color: #5d4e37;
    margin-bottom: 15px;
}

.form-container > p {
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #5d4e37;
}

.form-field input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d5cfc5;
    font-size: 1rem;
    background-color: #fdfcfb;
}

.form-field input:focus {
    outline: none;
    border-color: #a08968;
}

#selectedServiceDisplay {
    padding: 12px;
    background-color: #f5f2ed;
    border: 1px solid #d5cfc5;
    color: #5d4e37;
    font-weight: 500;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #5d4e37;
    color: white;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-submit:disabled {
    background-color: #b8ada0;
    cursor: not-allowed;
}

.disclaimer-section {
    padding: 50px 40px;
    background-color: #e8e4de;
}

.disclaimer-section p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 0.95rem;
    color: #5d4e37;
}

footer {
    background-color: #3a3229;
    color: #d5cfc5;
    padding: 60px 40px 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-col h4 {
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col p {
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    color: #d5cfc5;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ffffff;
}

.reference-item {
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.reference-item a {
    display: inline;
    color: #a08968;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #5d4e37;
    color: white;
    padding: 25px 40px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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;
    min-width: 300px;
}

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

.btn-accept, .btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #a08968;
    color: white;
}

.btn-accept:hover {
    background-color: #8a7456;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .cards-grid {
        padding: 40px 20px;
    }

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

    .form-container {
        padding: 30px 20px;
    }
}