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

:root {
    --primary-color: #2c5f5d;
    --secondary-color: #d4a574;
    --accent-color: #8b9d83;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #faf8f5;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --success-color: #4a7c59;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

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

.brand {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background: var(--bg-light);
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.hero-image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-white);
    width: 90%;
    max-width: 900px;
}

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

.hero-overlay-text p {
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.story-intro {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

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

.narrow-content h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.narrow-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.problem-amplification {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

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

.content-side {
    flex: 1;
}

.content-side h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-side p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.3rem;
}

.image-side {
    flex: 1;
    background-color: var(--accent-color);
}

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

.insight-box {
    background-color: var(--bg-white);
    padding: 1.8rem;
    border-left: 4px solid var(--secondary-color);
    margin-top: 2rem;
}

.insight-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.insight-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.insight-reveal {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

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

.centered-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.centered-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.services-reveal {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

.container h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: calc(50% - 1.25rem);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--accent-color);
}

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

.service-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 1.5rem 1.8rem 1rem;
    font-weight: 600;
}

.service-card > p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 1.8rem 1.5rem;
}

.service-benefits ul {
    list-style: none;
    margin: 0 1.8rem 1.5rem;
}

.service-benefits li {
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.service-price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 1rem 1.8rem;
}

.btn-select {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 1.8rem 1.8rem;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #234948;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.testimonials-inline h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
}

.author {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
    font-style: normal;
}

.consultation-form {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 10px;
}

.form-container h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-container > p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

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

.form-consent label {
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.form-consent input[type="checkbox"] {
    margin-right: 0.6rem;
    margin-top: 0.2rem;
    cursor: pointer;
}

.form-consent a {
    color: var(--primary-color);
    text-decoration: none;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #234948;
}

.ingredient-composition {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.ingredient-composition h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.ingredient-composition > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ingredients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.ingredient {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    width: calc(50% - 1rem);
    min-width: 280px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ingredient h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.ingredient p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.disclaimer-section {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff9f0;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    padding: 2.5rem;
}

.disclaimer-box h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.disclaimer-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-section li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.references {
    font-size: 0.85rem;
    line-height: 1.8;
    padding-left: 1.5rem;
}

.references li {
    margin-bottom: 0.6rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #234948;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

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

.page-hero {
    margin-top: 75px;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.services-detailed {
    padding: 5rem 2rem;
}

.service-detail {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.price-tag {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.treatment-philosophy {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.about-hero {
    margin-top: 75px;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.about-hero-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.4rem;
    color: var(--text-light);
}

.about-image {
    flex: 1;
    background-color: var(--accent-color);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.our-story {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.story-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.story-text {
    flex: 2;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.story-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.our-approach {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.our-approach h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.approach-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-item {
    flex: 1;
    min-width: 260px;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.approach-item h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.science-background {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.principle-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.principle {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid var(--secondary-color);
}

.principle h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.principle p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.values-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.values-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.values-image {
    flex: 1;
    background-color: var(--accent-color);
}

.values-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.values-content {
    flex: 1;
}

.values-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.values-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.values-list li:before {
    content: "◆";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.mission-statement {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

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

.cta-box h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-box p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-large {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-header {
    margin-top: 75px;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-main {
    padding: 5rem 2rem;
}

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

.contact-info-side {
    flex: 1;
}

.contact-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-card h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.location-info,
.response-time {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.location-info h3,
.response-time h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.location-info p,
.response-time p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.contact-visual-side {
    flex: 1;
}

.contact-visual-side > img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
    background-color: var(--accent-color);
}

.consultation-note {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.consultation-note h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.consultation-note p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.faq-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-hero {
    margin-top: 75px;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--success-color) 0%, var(--primary-color) 100%);
    text-align: center;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--bg-white);
    color: var(--success-color);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-weight: bold;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.thanks-details {
    padding: 5rem 2rem;
}

.thanks-info-box {
    max-width: 900px;
    margin: 0 auto 3rem;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 10px;
}

.thanks-info-box h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.selected-service-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.service-confirmation {
    text-align: center;
}

.service-confirmation h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.selected-service-name {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.selected-service-price {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.thanks-additional {
    max-width: 800px;
    margin: 0 auto 3rem;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.thanks-additional h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.thanks-additional p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.continue-browsing {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.continue-browsing h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.continue-browsing p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.preparation-tips {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.preparation-tips h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.tips-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.tip {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tip h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.tip p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-page {
    margin-top: 75px;
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

.legal-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.legal-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

    .split-layout,
    .story-layout,
    .values-layout,
    .about-hero-layout,
    .contact-layout,
    .service-detail {
        flex-direction: column;
    }

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

    .service-card {
        width: 100%;
    }

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

    .step {
        flex-direction: row;
    }
}