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

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

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

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

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

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

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.ad-notice {
    font-size: 11px;
    color: #666;
    padding: 4px 12px;
    background-color: #f0f0f0;
    border-radius: 12px;
}

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

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

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

.hero-visual {
    margin-top: 100px;
    height: 85vh;
    position: relative;
    background-color: #e8dcc8;
}

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

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
}

.hero-text-overlay h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-text-overlay p {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 300;
}

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

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

.story-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
}

.image-statement {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 60px;
    background-color: #f9f6f2;
}

.image-statement img {
    flex: 1;
    max-width: 500px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8dcc8;
}

.statement-text {
    flex: 1;
}

.statement-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 400;
}

.statement-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a5a5a;
}

.problem-awareness {
    padding: 100px 20px;
    background-color: #2c2c2c;
    color: #ffffff;
}

.awareness-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.awareness-wrapper h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
}

.awareness-grid {
    display: flex;
    gap: 40px;
}

.awareness-block {
    flex: 1;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.awareness-block p {
    font-size: 17px;
    line-height: 1.7;
}

.solution-reveal {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 80px;
    background-color: #ffffff;
}

.reveal-image {
    flex: 1;
    background-color: #f0e8da;
}

.reveal-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.reveal-content {
    flex: 1;
}

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

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

.trust-section {
    padding: 100px 40px;
    background-color: #f9f6f2;
}

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

.testimonial-flow {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial {
    padding: 35px 40px;
    background-color: #ffffff;
    border-left: 4px solid #d4a574;
    border-radius: 4px;
}

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

.testimonial-author {
    font-size: 14px;
    color: #888;
    font-weight: 600;
}

.services-preview {
    padding: 100px 40px;
    background-color: #ffffff;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    font-weight: 300;
}

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

.service-card {
    width: 340px;
    background-color: #f9f6f2;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px 20px;
    color: #2c2c2c;
    font-weight: 500;
}

.service-card p {
    margin: 0 20px 15px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #5a5a5a;
}

.service-price {
    margin: 15px 20px;
    font-size: 24px;
    font-weight: 700;
    color: #d4a574;
}

.select-service {
    width: calc(100% - 40px);
    margin: 20px;
    padding: 14px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 100px 40px;
    background-color: #2c2c2c;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 400;
}

.selected-service-display {
    padding: 15px;
    background-color: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #666;
    text-align: center;
}

.selected-service-display.active {
    background-color: #e8f5e9;
    color: #2e7d32;
    font-weight: 600;
}

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

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

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

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

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

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

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

.ingredients-section {
    padding: 100px 40px;
    background-color: #f9f6f2;
}

.ingredients-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 300;
}

.ingredients-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.ingredient-item {
    flex: 1;
    min-width: 200px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.ingredient-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #d4a574;
    font-weight: 600;
}

.ingredient-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a5a5a;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px 40px;
}

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

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

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

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

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 12px;
    color: #888;
    line-height: 1.6;
}

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

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

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

    .image-statement,
    .solution-reveal {
        flex-direction: column;
        padding: 60px 20px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}