/* MINIMAL PREMIUM ARCHETYPE - Thermal Medicine Longevity */

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2D5F5D;
    --secondary-color: #8BA89C;
    --accent-color: #C9A86A;
    --text-dark: #1A1A1A;
    --text-gray: #4A4A4A;
    --text-light: #7A7A7A;
    --bg-white: #FFFFFF;
    --bg-cream: #FAF8F5;
    --bg-light: #F5F5F3;
    --border-color: #E0DDD8;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-gray);
}

.large-text {
    font-size: 1.5rem;
    line-height: 1.6;
}

/* ========== NAVIGATION - MINIMAL ========== */
.nav-minimal {
    padding: 2rem 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.nav-links a {
    font-size: 1rem;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

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

/* ========== HERO - MINIMAL PREMIUM ========== */
.hero-minimal {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
    gap: 6rem;
}

.hero-content {
    flex: 1;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 550px;
}

.hero-visual {
    flex: 1;
    max-width: 600px;
}

.hero-visual img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* ========== SECTIONS - PREMIUM SPACING ========== */
section {
    padding: 8rem 3rem;
}

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

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

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

/* ========== INTRO SECTION ========== */
.intro-wide {
    background: var(--bg-cream);
    padding: 6rem 3rem;
}

.intro-text {
    font-size: 1.75rem;
    line-height: 1.6;
    color: var(--text-gray);
    text-align: center;
}

/* ========== STORY SECTION ========== */
.story-section {
    padding: 10rem 3rem;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 8rem;
    align-items: center;
}

.story-image {
    flex: 1;
    max-width: 500px;
}

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

.story-content {
    flex: 1;
    max-width: 600px;
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
}

.story-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ========== INSIGHT MINIMAL ========== */
.insight-minimal {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 10rem 3rem;
}

.insight-minimal h3 {
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.insight-minimal .large-text {
    font-size: 2.25rem;
    line-height: 1.5;
    color: var(--bg-white);
}

/* ========== SPLIT CONTENT ========== */
.split-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
}

.split-left, .split-right {
    flex: 1;
}

.split-left h2, .split-right h2 {
    margin-bottom: 2.5rem;
}

.split-left p, .split-right p {
    margin-bottom: 1.5rem;
}

/* ========== SCIENCE BLOCK ========== */
.science-block {
    background: var(--bg-light);
    padding: 8rem 3rem;
}

.science-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 5rem;
}

.science-stat {
    flex: 1;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* ========== TESTIMONIAL INLINE ========== */
.testimonial-inline {
    background: var(--bg-cream);
    padding: 8rem 3rem;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text {
    font-size: 1.75rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--text-light);
}

/* ========== PROCESS STEPS ========== */
.process-section {
    padding: 10rem 3rem;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

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

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 300;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.step h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step p {
    font-size: 1rem;
    line-height: 1.6;
}

/* ========== BENEFITS VISUAL ========== */
.benefits-visual {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    padding: 8rem 3rem;
}

.benefit-block {
    flex: 1;
    text-align: center;
}

.benefit-block img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 2rem;
}

.benefit-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-block p {
    font-size: 1rem;
    color: var(--text-light);
}

/* ========== CTA BLOCKS ========== */
.cta-block-inline {
    background: var(--bg-cream);
    padding: 6rem 3rem;
}

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

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

/* ========== BUTTONS ========== */
.btn-primary, .btn-secondary, .btn-submit {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 1rem;
    font-family: inherit;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: var(--accent-color);
    color: var(--bg-white);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-submit {
    background: var(--primary-color);
    color: var(--bg-white);
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--accent-color);
}

/* ========== TRUST SECTION ========== */
.trust-section {
    background: var(--bg-light);
    padding: 6rem 3rem;
}

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

.trust-container h2 {
    margin-bottom: 3rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 1.125rem;
    color: var(--text-gray);
    padding: 1rem 2rem;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
}

/* ========== SERVICES PRICING ========== */
.services-pricing {
    padding: 8rem 3rem;
    background: var(--bg-cream);
}

.reveal-section {
    padding: 6rem 3rem;
}

.reveal-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: var(--bg-white);
    padding: 3rem;
    border: 1px solid var(--border-color);
    position: relative;
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(45, 95, 93, 0.15);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.service-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-gray);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
    text-align: center;
    margin-top: 2rem;
}

/* ========== URGENCY BLOCK ========== */
.urgency-block {
    padding: 4rem 3rem;
    background: var(--bg-light);
}

.urgency-text {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-dark);
    font-style: italic;
}

/* ========== FORM SECTION ========== */
.form-section {
    padding: 10rem 3rem;
    background: var(--bg-white);
}

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

.form-container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* ========== FINAL CTA ========== */
.final-cta {
    padding: 10rem 3rem;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.final-cta h2 {
    color: var(--bg-white);
    margin-bottom: 2.5rem;
}

.final-cta .btn-secondary {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.final-cta .btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

/* ========== FOOTER ========== */
.footer-minimal {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 5rem 3rem 2rem;
}

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

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-col p,
.footer-col a {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--bg-light);
    display: block;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 2rem 3rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--bg-light);
}

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

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

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

.btn-accept {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background: var(--accent-color);
}

.btn-reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.btn-reject:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

/* ========== PAGE HEADERS ========== */
.page-header {
    padding: 8rem 3rem 6rem;
    background: var(--bg-cream);
    text-align: center;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.35rem;
    color: var(--text-light);
}

/* ========== ABOUT PAGE ========== */
.about-intro {
    padding: 8rem 3rem;
}

.about-intro img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 4rem;
}

.intro-content h2 {
    margin-bottom: 2rem;
}

.values-section {
    background: var(--bg-light);
    padding: 8rem 3rem;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-container h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    padding: 3rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
}

.value-card h3 {
    margin-bottom: 1rem;
}

.team-section {
    padding: 8rem 3rem;
}

.team-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.team-members {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.member-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.member-role {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.science-backing {
    background: var(--bg-cream);
    padding: 6rem 3rem;
}

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

.partners-list li {
    padding: 0.75rem 0;
    font-size: 1.125rem;
    color: var(--text-gray);
}

.location-section {
    padding: 8rem 3rem;
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    align-items: center;
}

.location-text {
    flex: 1;
}

.location-image {
    flex: 1;
    max-width: 600px;
}

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

.cta-section {
    background: var(--bg-light);
    padding: 6rem 3rem;
}

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

.cta-container h2 {
    margin-bottom: 1.5rem;
}

.cta-container p {
    margin-bottom: 2.5rem;
}

/* ========== SERVICES PAGE ========== */
.services-overview {
    padding: 6rem 3rem;
}

.overview-text {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-gray);
}

.services-detail {
    padding: 6rem 3rem;
}

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 5rem;
    padding: 4rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
}

.service-detail-card.featured-service {
    border: 2px solid var(--primary-color);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.service-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.duration {
    font-size: 1rem;
    color: var(--text-light);
}

.price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 400;
}

.service-body h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-includes {
    list-style: none;
}

.service-includes li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    padding-left: 1.5rem;
    position: relative;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-footer {
    margin-top: 3rem;
    text-align: center;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.comparison-section {
    padding: 6rem 3rem;
    background: var(--bg-cream);
}

.comparison-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* ========== CONTACT PAGE ========== */
.contact-main {
    padding: 6rem 3rem;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
}

.contact-info-block, .contact-map-block {
    flex: 1;
}

.contact-item {
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    position: relative;
    margin-bottom: 2rem;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--bg-white);
    padding: 1.5rem;
}

.map-info {
    font-size: 0.95rem;
    margin: 0;
}

.directions-info h3 {
    margin-bottom: 1rem;
}

.faq-section {
    background: var(--bg-light);
    padding: 6rem 3rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.faq-item p {
    margin-bottom: 0;
}

/* ========== THANKS PAGE ========== */
.thanks-hero {
    padding: 8rem 3rem;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.selected-service {
    margin: 3rem 0;
}

.selected-service-box {
    background: var(--bg-cream);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.service-name {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps {
    margin: 5rem 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 1rem;
    margin: 0;
}

.thanks-info {
    background: var(--bg-light);
    padding: 3rem;
    margin: 4rem 0;
    text-align: left;
}

.thanks-info h3 {
    margin-bottom: 1rem;
}

.thanks-info ul {
    list-style: disc;
    padding-left: 2rem;
}

.thanks-info li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-gray);
}

.thanks-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 4rem 0;
}

.thanks-contact {
    background: var(--bg-cream);
    padding: 2rem;
    margin-top: 4rem;
}

.thanks-contact p {
    margin-bottom: 0.5rem;
}

/* ========== LEGAL PAGES ========== */
.legal-page {
    padding: 6rem 3rem;
    background: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 4rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.legal-table th,
.legal-table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.legal-table th {
    background: var(--bg-light);
    font-weight: 600;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .hero-minimal {
        flex-direction: column;
        padding: 4rem 2rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .story-container {
        flex-direction: column;
        gap: 4rem;
    }

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

    .science-container {
        flex-direction: column;
        gap: 3rem;
    }

    .process-steps {
        flex-direction: column;
    }

    .benefits-visual {
        flex-direction: column;
    }

    .services-container {
        flex-direction: column;
    }

    .location-container {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    section {
        padding: 5rem 2rem;
    }

    .nav-container {
        padding: 0 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

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

    .service-meta {
        align-items: flex-start;
    }

    .contact-item h3 {
        font-size: 1.125rem;
    }

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

    .btn-accept, .btn-reject {
        width: 100%;
    }
}
