* {
    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.7;
    color: #2a2a2a;
    background-color: #ffffff;
    font-size: 17px;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.floating-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.logo a {
    color: inherit;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #4a4a4a;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2563eb;
}

.ad-disclosure {
    font-size: 12px;
    color: #6b7280;
    padding: 4px 12px;
    background: #f3f4f6;
    border-radius: 4px;
}

.hero-full {
    margin-top: -70px;
    padding-top: 70px;
}

.hero-background {
    height: 85vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-narrow {
    max-width: 700px;
    padding: 40px;
    text-align: center;
    color: #ffffff;
}

.hero-content-narrow h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtext {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.story-narrow {
    padding: 100px 0;
    background: #ffffff;
}

.story-intro {
    font-size: 24px;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 40px;
}

.story-narrow h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-top: 60px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-narrow p {
    margin-bottom: 24px;
    color: #3a3a3a;
}

.inline-image-block {
    margin: 60px 0;
}

.inline-image-block img {
    width: 100%;
    border-radius: 8px;
}

.citation {
    font-size: 14px;
    color: #2563eb;
    font-weight: 600;
    padding: 2px 6px;
    background: #eff6ff;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.citation:hover {
    background: #dbeafe;
}

.trust-element {
    background: #f9fafb;
    border-left: 4px solid #2563eb;
    padding: 40px;
    margin: 60px 0;
    border-radius: 0 8px 8px 0;
}

.trust-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #3a3a3a;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.services-cards {
    padding: 80px 0;
    background: #fafafa;
}

.services-grid-varied {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    max-width: 550px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.card-content p {
    color: #4a4a4a;
    margin-bottom: 24px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
}

.select-service {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.select-service:hover {
    background: #1e40af;
    transform: scale(1.05);
}

.testimonials-flow {
    padding: 100px 0;
    background: #ffffff;
}

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

.testimonial-inline {
    margin: 40px 0;
    padding: 40px;
    background: #f9fafb;
    border-radius: 8px;
}

.testimonial-inline blockquote {
    font-size: 20px;
    line-height: 1.6;
    color: #2a2a2a;
    font-style: italic;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    color: #6b7280;
    font-style: normal;
    font-weight: 600;
}

.composition-section {
    padding: 100px 0;
    background: #fafafa;
}

.split-content-alt {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.content-left {
    flex: 1 1 500px;
}

.content-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.content-left p {
    color: #3a3a3a;
    margin-bottom: 24px;
}

.ingredient-list {
    list-style: none;
}

.ingredient-list li {
    padding: 12px 0;
    color: #3a3a3a;
    border-bottom: 1px solid #e5e7eb;
}

.ingredient-list li:last-child {
    border-bottom: none;
}

.content-right {
    flex: 1 1 400px;
}

.image-wrapper {
    border-radius: 8px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
}

.cta-emphasis {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e40af, #2563eb);
}

.cta-box {
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    background: #ffffff;
    color: #2563eb;
    padding: 18px 48px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.form-section {
    padding: 100px 0;
    background: #ffffff;
}

.form-wrapper-centered {
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper-centered h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
    font-size: 18px;
}

.service-form {
    background: #f9fafb;
    padding: 40px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-actions {
    margin-top: 32px;
}

.btn-submit {
    width: 100%;
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.disclaimer-section {
    padding: 80px 0;
    background: #fef3c7;
}

.disclaimer-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.disclaimer-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #92400e;
}

.disclaimer-box p {
    color: #78350f;
    line-height: 1.7;
}

.site-footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 60px 0 30px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #d1d5db;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-references {
    border-top: 1px solid #374151;
    padding-top: 30px;
    margin-top: 30px;
}

.footer-references h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-references ol {
    font-size: 13px;
    line-height: 1.8;
    padding-left: 20px;
}

.footer-references a {
    color: #93c5fd;
}

.footer-references a:hover {
    color: #dbeafe;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.98);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 24px;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #93c5fd;
}

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

.btn-primary,
.btn-secondary {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1e40af;
    transform: scale(1.05);
}

.btn-secondary {
    background: #4b5563;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #374151;
    transform: scale(1.05);
}

.page-hero {
    padding: 100px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #f3f4f6, #ffffff);
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-text {
    font-size: 20px;
    color: #4a4a4a;
    line-height: 1.6;
}

.about-content {
    padding: 80px 0;
}

.content-split {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.content-main {
    flex: 1 1 600px;
}

.content-main h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.content-main p {
    margin-bottom: 20px;
    color: #3a3a3a;
}

.about-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
}

.principles-list {
    list-style: none;
    margin: 30px 0;
}

.principles-list li {
    padding: 20px;
    background: #f9fafb;
    margin-bottom: 16px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.content-sidebar {
    flex: 1 1 300px;
}

.sidebar-box {
    background: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.sidebar-box h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #3a3a3a;
}

.values-list li:last-child {
    border-bottom: none;
}

.team-section {
    padding: 80px 0;
    background: #fafafa;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail {
    margin-bottom: 80px;
}

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

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

.service-visual {
    flex: 1 1 450px;
    border-radius: 12px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
}

.service-info {
    flex: 1 1 450px;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.price-display {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 24px;
}

.service-info h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-info ul {
    list-style: none;
    margin: 20px 0;
}

.service-info ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #3a3a3a;
}

.service-info ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 20px;
}

.select-service-btn {
    margin-top: 30px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.select-service-btn:hover {
    background: #1e40af;
    transform: scale(1.05);
}

.service-premium {
    background: #fef3c7;
    padding: 40px;
    border-radius: 12px;
}

.service-cta {
    padding: 80px 0;
    background: #f9fafb;
    text-align: center;
}

.service-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-cta p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
    background: #1e40af;
    transform: scale(1.05);
}

.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-box {
    flex: 1 1 450px;
}

.contact-info-box h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2563eb;
}

.info-block p {
    color: #3a3a3a;
    line-height: 1.7;
}

.no-link {
    color: #3a3a3a;
}

.contact-visual {
    flex: 1 1 450px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
}

.map-section {
    padding: 80px 0;
    background: #fafafa;
    text-align: center;
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-hero {
    padding: 100px 0;
    text-align: center;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 50px;
}

.thanks-details {
    background: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.next-steps {
    text-align: left;
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    padding: 12px 0;
    color: #3a3a3a;
}

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

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.last-updated {
    color: #6b7280;
    margin-bottom: 40px;
    font-size: 16px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2a2a2a;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 10px;
    color: #3a3a3a;
}

.legal-page p {
    margin-bottom: 16px;
    color: #3a3a3a;
    line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 30px;
    color: #3a3a3a;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th {
    background: #f3f4f6;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #1a1a1a;
    border-bottom: 2px solid #d1d5db;
}

.cookie-table td {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    color: #3a3a3a;
}

@media (max-width: 768px) {
    .hero-content-narrow h1 {
        font-size: 32px;
    }

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

    .story-intro {
        font-size: 20px;
    }

    .story-narrow h2 {
        font-size: 28px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-top: 15px;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .split-content-alt,
    .service-layout,
    .contact-layout,
    .content-split {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

    .thanks-content h1 {
        font-size: 32px;
    }

    .footer-columns {
        flex-direction: column;
    }
}