* {
    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: #ffffff;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #d4a574;
    color: #ffffff;
}

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

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

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1300px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 50px;
    padding: 15px 40px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 600;
    color: #d4a574;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

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

.ad-label {
    font-size: 12px;
    color: #888888;
    padding: 5px 12px;
    border: 1px solid #cccccc;
    border-radius: 20px;
    background-color: #f9f9f9;
}

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

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    max-width: 900px;
}

.hero-overlay p {
    font-size: 22px;
    max-width: 700px;
    line-height: 1.8;
}

.intro-story {
    padding: 120px 20px;
    background-color: #faf8f5;
}

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

.story-content h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c2c2c;
    line-height: 1.3;
}

.story-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555555;
    line-height: 1.9;
}

.story-content a {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
}

.story-content a:hover {
    text-decoration: underline;
}

.visual-split {
    display: flex;
    min-height: 600px;
}

.split-left,
.split-right {
    flex: 1;
}

.split-left {
    background-color: #e8dfd3;
}

.split-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-right {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.split-right h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.split-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555555;
    line-height: 1.8;
}

.split-right a {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
}

.split-right a:hover {
    text-decoration: underline;
}

.problem-amplification {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    color: #ffffff;
}

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

.problem-content h2 {
    font-size: 40px;
    margin-bottom: 35px;
    text-align: center;
}

.problem-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.9;
    text-align: center;
}

.insight-reveal {
    padding: 0;
}

.insight-wrapper {
    display: flex;
}

.insight-visual,
.insight-text {
    flex: 1;
}

.insight-visual {
    background-color: #d4a574;
}

.insight-visual img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.insight-text {
    padding: 80px 60px;
    background-color: #faf8f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-text h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.insight-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555555;
    line-height: 1.8;
}

.composition-detail {
    padding: 100px 20px;
    background-color: #ffffff;
}

.composition-header {
    text-align: center;
    margin-bottom: 60px;
}

.composition-header h2 {
    font-size: 40px;
    color: #2c2c2c;
}

.ingredient-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.ingredient-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 40px 30px;
    background-color: #faf8f5;
    border-left: 4px solid #d4a574;
}

.ingredient-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.ingredient-card p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
}

.testimonials-inline {
    padding: 100px 20px;
    background: linear-gradient(to right, #e8dfd3 0%, #d4a574 100%);
}

.testimonials-inline h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c2c2c;
}

.testimonial-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 20px;
    color: #2c2c2c;
    line-height: 1.7;
}

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

.services-preview {
    padding: 100px 20px;
    background-color: #faf8f5;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.services-intro p {
    font-size: 18px;
    color: #555555;
}

.services-visual-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 400px;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 300px;
    background-color: #e8dfd3;
}

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

.service-details {
    padding: 35px;
}

.service-details h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-details p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555555;
    line-height: 1.7;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #d4a574;
}

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

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c2c2c;
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-point {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 40px;
    background-color: #faf8f5;
    border-radius: 8px;
}

.trust-point h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.trust-point p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
}

.cta-form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #d4a574 0%, #c69563 100%);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

.form-wrapper > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select {
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background-color: #2c2c2c;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

.references-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.references-content h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.references-list {
    list-style-position: inside;
}

.references-list li {
    font-size: 15px;
    margin-bottom: 15px;
    color: #555555;
    line-height: 1.7;
}

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

.references-list a:hover {
    text-decoration: underline;
}

.site-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

.footer-section {
    flex: 1 1 200px;
}

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

.footer-section p {
    font-size: 14px;
    color: #cccccc;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #888888;
}

@media (max-width: 768px) {
    .nav-floating {
        width: 95%;
        padding: 12px 20px;
        border-radius: 30px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

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

    .visual-split,
    .insight-wrapper {
        flex-direction: column;
    }

    .split-right,
    .insight-text {
        padding: 50px 30px;
    }

    .service-item {
        min-width: 100%;
    }

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

    .form-wrapper {
        padding: 40px 30px;
    }
}