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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --accent-color: #8b4513;
    --text-color: #333333;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --gray: #666666;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.ad-disclosure {
    background-color: var(--light-bg);
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: var(--gray);
    border-bottom: 1px solid var(--border-color);
}

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

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

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

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary-color);
}

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

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: var(--light-bg);
}

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

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

.hero-overlay h1 {
    font-size: 68px;
    color: var(--white);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.story-intro {
    padding: 100px 20px;
    background-color: var(--white);
}

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

.opening-question {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 35px;
    line-height: 1.4;
}

.story-intro p {
    font-size: 19px;
    margin-bottom: 25px;
    color: var(--text-color);
}

.problem-amplification {
    padding: 100px 20px;
    background-color: var(--light-bg);
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.split-image {
    flex: 1;
    background-color: var(--border-color);
}

.split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.insight-reveal {
    padding: 120px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.insight-reveal h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 35px;
}

.insight-text {
    font-size: 24px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.how-it-works {
    padding: 100px 20px;
    background-color: var(--white);
}

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

.content-wrapper h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-color);
}

.process-flow {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.process-card {
    flex: 1;
    text-align: center;
}

.process-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.trust-building {
    padding: 100px 20px;
    background-color: var(--light-bg);
}

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

.testimonial-card {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    color: var(--text-color);
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray);
}

.visual-showcase {
    width: 100%;
    height: 600px;
    background-color: var(--border-color);
}

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

.services-reveal {
    padding: 100px 20px;
    background-color: var(--white);
}

.section-intro {
    text-align: center;
    font-size: 19px;
    max-width: 800px;
    margin: -40px auto 70px;
    color: var(--gray);
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-feature.reverse {
    flex-direction: row-reverse;
}

.service-feature img {
    width: 100%;
    height: 400px;
    flex: 1;
    border-radius: 12px;
    object-fit: cover;
    background-color: var(--border-color);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-benefit {
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 20px;
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 25px 0;
}

.service-cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.ingredients-section {
    padding: 100px 20px;
    background-color: var(--light-bg);
}

.verification-points {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 50px;
}

.verification-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.verification-item p {
    font-size: 17px;
    line-height: 1.7;
}

.citation {
    color: var(--accent-color);
    font-weight: 600;
}

.final-cta-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.centered {
    text-align: center;
}

.main-form {
    max-width: 600px;
    margin: 50px auto 0;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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: var(--secondary-color);
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 18px 60px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: var(--light-bg);
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 70px 20px 30px;
}

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

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column p,
.footer-column ul li {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-references p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-references a {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--success-color);
    color: var(--white);
}

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

.cookie-btn.reject {
    background-color: var(--gray);
    color: var(--white);
}

.cookie-btn.reject:hover {
    background-color: #555555;
}

.page-hero {
    margin-top: 100px;
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.page-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 100%;
    padding: 20px;
}

.page-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.about-story {
    padding: 100px 20px;
    background-color: var(--white);
}

.story-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-approach {
    padding: 100px 20px;
    background-color: var(--light-bg);
}

.values-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.values-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    flex: 1;
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: 12px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
}

.numbers-section {
    padding: 100px 20px;
    background-color: var(--primary-color);
    color: var(--white);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 50px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-about {
    padding: 100px 20px;
    background-color: var(--light-bg);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.services-detailed {
    padding: 100px 20px;
    background-color: var(--white);
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: var(--border-color);
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    font-size: 16px;
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-duration {
    font-size: 15px;
    color: var(--gray);
    margin-top: 15px;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
}

.service-form-section {
    padding: 100px 20px;
    background-color: var(--light-bg);
}

.contact-hero {
    margin-top: 100px;
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.contact-intro {
    font-size: 20px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray);
}

.contact-info-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.contact-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.contact-card {
    flex: 1;
    text-align: center;
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: 12px;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-card p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-note {
    font-size: 14px;
    color: var(--gray);
    margin-top: 10px;
}

.location-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.location-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.location-section p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 800px;
}

.location-image {
    width: 100%;
    height: 500px;
    background-color: var(--border-color);
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.visit-info {
    padding: 80px 20px;
    background-color: var(--white);
}

.visit-info h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.visit-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.visit-note {
    font-size: 15px;
    color: var(--gray);
    font-style: italic;
    margin-top: 20px;
}

.thanks-section {
    margin-top: 100px;
    padding: 100px 20px;
    background-color: var(--white);
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--success-color);
    color: var(--white);
    font-size: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.service-detail {
    font-size: 17px;
}

.thanks-info {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.button-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button-primary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.button-secondary {
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.button-secondary:hover {
    border-color: var(--primary-color);
}

.next-steps {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-top: 50px;
}

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

.step-number {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
}

.legal-page {
    margin-top: 100px;
    padding: 80px 20px;
    background-color: var(--white);
}

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

.legal-container h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 15px 30px;
    list-style: disc;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .split-layout {
        flex-direction: column;
        gap: 40px;
    }

    .split-layout.reverse {
        flex-direction: column;
    }

    .process-flow {
        flex-direction: column;
        gap: 40px;
    }

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

    .service-feature,
    .service-feature.reverse {
        flex-direction: column;
    }

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

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .steps-grid {
        flex-direction: column;
        gap: 40px;
    }

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

    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
    }

    .thanks-actions {
        flex-direction: column;
    }

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