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

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

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

.cookie-banner.active {
    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-buttons {
    display: flex;
    gap: 15px;
}

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

.btn-accept {
    background: #d4af37;
    color: #fff;
}

.btn-accept:hover {
    background: #b8941f;
}

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

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #d4af37;
}

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

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

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

.ad-notice {
    background: #f0f0f0;
    padding: 5px 15px;
    font-size: 12px;
    color: #666;
    border-left: 2px solid #d4af37;
}

.hero-visual {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #f5f5f5;
}

.hero-image {
    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: 2;
    width: 90%;
    max-width: 800px;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    backdrop-filter: blur(5px);
}

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

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

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

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

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.content-narrow p {
    font-size: 20px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.insight-block {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.insight-visual {
    flex: 1;
    background-color: #e8e8e8;
}

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

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

.insight-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #222;
}

.insight-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.citation {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.citation:hover {
    opacity: 0.7;
}

.problem-amplify {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
}

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

.problem-amplify h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #d4af37;
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #d4af37;
}

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

.solution-reveal {
    display: flex;
    min-height: 650px;
}

.solution-visual {
    flex: 1.2;
    order: 2;
    background-color: #f0f0f0;
}

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

.solution-text {
    flex: 1;
    padding: 80px 60px;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #222;
}

.solution-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.testimonials-flow {
    padding: 100px 20px;
    background: #fff;
}

.testimonials-flow h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #222;
}

.testimonial-item {
    margin-bottom: 50px;
    padding: 40px;
    background: #fafafa;
    border-left: 4px solid #d4af37;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 16px;
    color: #777;
    text-align: right;
}

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

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #222;
}

.services-visual-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-visual-card {
    display: flex;
    min-height: 400px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

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

.service-image-wrapper {
    flex: 1;
    background-color: #e0e0e0;
}

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

.service-info {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #222;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.btn-select {
    padding: 15px 40px;
    background: #d4af37;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #fff;
}

.form-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
}

.form-section > .content-narrow > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    background: #fff;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #333;
}

.ingredients-section {
    padding: 100px 20px;
    background: #fff;
}

.ingredients-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #222;
}

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

.ingredient-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #fafafa;
    border-top: 3px solid #d4af37;
}

.ingredient-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

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

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px;
}

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

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #d4af37;
}

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

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

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

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

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

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

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

.references-list a {
    color: #bbb;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.references-list a:hover {
    color: #d4af37;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777;
    font-size: 14px;
}

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

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

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

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

    .insight-block,
    .solution-reveal {
        flex-direction: column;
    }

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

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

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

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