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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.ad-notice {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 85vh;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 10;
    max-width: 900px;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.cta-hero {
    padding: 1.2rem 3rem;
    background-color: #d4af37;
    color: #1a1a1a;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

.cta-hero:hover {
    background-color: #c19b2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,175,55,0.5);
}

.story-intro {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

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

.intro-text {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: #3c3c3c;
}

.visual-break,
.visual-break-two {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    background-color: #e8e8e8;
}

.visual-break img,
.visual-break-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-amplification {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.problem-amplification h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c2c2c;
    text-align: center;
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.text-block {
    flex: 1;
}

.text-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3c3c3c;
}

.text-block a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.text-block a:hover {
    text-decoration: underline;
}

.image-block {
    flex: 1;
    background-color: #f5f5f5;
}

.image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.insight-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.insight-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.insight-section p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    color: #3c3c3c;
}

.inline-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

.trust-builder {
    padding: 6rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

.trust-builder h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    color: #ffffff;
}

.trust-grid {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.trust-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cccccc;
}

.testimonials-inline {
    padding: 6rem 2rem;
    background-color: #f5f5f5;
}

.testimonial {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background-color: #ffffff;
    border-left: 4px solid #d4af37;
}

.testimonial p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
    color: #3c3c3c;
}

.testimonial cite {
    font-style: normal;
    color: #666;
    font-weight: 600;
}

.services-reveal {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.services-reveal h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #2c2c2c;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    gap: 2rem;
    background-color: #fafafa;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card.selected {
    border: 3px solid #d4af37;
    box-shadow: 0 8px 24px rgba(212,175,55,0.3);
}

.service-image {
    flex: 0 0 350px;
    background-color: #e8e8e8;
}

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

.service-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #3c3c3c;
}

.ingredients {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin: 1.5rem 0;
}

.select-service-btn {
    padding: 1rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.select-service-btn.selected {
    background-color: #d4af37;
    color: #1a1a1a;
}

.form-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #ffffff;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #cccccc;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #444;
    background-color: #ffffff;
    color: #2c2c2c;
    font-size: 1rem;
    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;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background-color: #d4af37;
    color: #1a1a1a;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #c19b2e;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    border-top: 3px solid #d4af37;
}

.disclaimer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.references-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.references-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.references-list {
    list-style-position: outside;
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

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

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
}

.footer-column p {
    color: #cccccc;
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

.contact-page {
    margin-top: 80px;
    padding: 6rem 2rem;
    min-height: 70vh;
}

.contact-page h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.info-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #fafafa;
    border-left: 4px solid #d4af37;
}

.info-item h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.info-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3c3c3c;
}

.about-page {
    margin-top: 80px;
}

.about-hero {
    padding: 6rem 2rem;
    background-color: #fafafa;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    color: #3c3c3c;
}

.about-content {
    padding: 6rem 2rem;
}

.about-section {
    margin-bottom: 5rem;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.about-section p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #3c3c3c;
    margin-bottom: 1.5rem;
}

.services-page {
    margin-top: 80px;
    padding: 6rem 2rem;
}

.services-page h1 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.legal-page {
    margin-top: 80px;
    padding: 6rem 2rem;
    min-height: 70vh;
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #3c3c3c;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3c3c3c;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
}

.thanks-page {
    margin-top: 80px;
    padding: 8rem 2rem;
    text-align: center;
    min-height: 70vh;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

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

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.thanks-content p {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: #3c3c3c;
}

.thanks-content .highlight {
    font-weight: 700;
    color: #d4af37;
}

.back-home-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background-color: #c19b2e;
    transform: translateY(-2px);
}

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

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .hero-overlay p {
        font-size: 1.1rem;
    }

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

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

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

    .service-image {
        flex: 0 0 250px;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}