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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #4a90e2;
    --accent-color: #2ecc71;
    --text-dark: #222;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-gray: #e9ecef;
    --border-color: #dee2e6;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.header-main {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    background-color: var(--bg-gray);
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.cta-primary:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #3a7bc8;
}

.cta-outline {
    display: inline-block;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

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

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    line-height: 1.3;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-visual {
    flex: 1;
    background-color: var(--bg-gray);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.philosophy-image {
    flex: 1;
    background-color: var(--bg-gray);
    border-radius: 8px;
    overflow: hidden;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.philosophy-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    font-size: 16px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
}

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    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 {
    height: 240px;
    background-color: var(--bg-gray);
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.select-service:hover {
    background-color: #333;
}

.services-cta {
    text-align: center;
    margin-top: 60px;
}

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

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.form-visual {
    flex: 1;
}

.form-visual h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.form-visual p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: bold;
}

.form-wrapper {
    flex: 1;
    background-color: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    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);
}

.btn-submit {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonials-section {
    padding: 100px 40px;
    background-color: var(--white);
    text-align: center;
}

.testimonials-section h2 {
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.testimonials-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial {
    padding: 35px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

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

.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

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

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    max-width: 1400px;
    margin: 30px auto 0;
    text-align: center;
}

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

.cookie-banner {
    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 40px;
    z-index: 10000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

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

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

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

.btn-cookie-reject:hover {
    background-color: var(--border-color);
}

.page-hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 100px 40px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

.about-intro-split {
    padding: 100px 40px;
    background-color: var(--white);
}

.about-intro-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background-color: var(--bg-gray);
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.value-block {
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
}

.value-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-block p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

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

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

.team-image {
    flex: 1;
    background-color: var(--bg-gray);
    border-radius: 8px;
    overflow: hidden;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.team-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.approach-container h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.approach-split {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.approach-item {
    flex: 1;
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

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

.facility-content {
    flex: 1;
}

.facility-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.facility-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.facility-features {
    list-style: none;
    margin-top: 25px;
}

.facility-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    font-size: 16px;
}

.facility-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
}

.facility-image {
    flex: 1;
    background-color: var(--bg-gray);
    border-radius: 8px;
    overflow: hidden;
}

.cta-about {
    padding: 80px 40px;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-about-content h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-about-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

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

.service-detail-block {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

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

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

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.service-includes li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    font-size: 15px;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
}

.service-detail-image {
    flex: 1;
    background-color: var(--bg-gray);
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
}

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

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

.packages-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.packages-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.package-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.package-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.package-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.package-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.package-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    font-size: 15px;
}

.package-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.package-note {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

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

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    height: 500px;
    background-color: var(--bg-gray);
    border-radius: 8px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 4px;
}

.map-overlay p {
    font-size: 16px;
    font-weight: 600;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.faq-item {
    background-color: var(--white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.contact-form-section {
    padding: 100px 40px;
    background-color: var(--white);
}

.contact-form-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

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

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.service-confirmation {
    margin: 30px 0;
}

.selected-service-box {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.selected-service-box h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
}

.thanks-next-steps {
    margin: 60px 0;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.step-item {
    padding: 30px 20px;
}

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

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

.step-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.thanks-contact {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.thanks-contact p {
    font-size: 15px;
    color: var(--text-light);
}

.contact-email {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 10px;
}

.legal-page {
    padding: 60px 40px;
    background-color: var(--white);
}

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

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

.legal-intro {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-container p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-container ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-container ul li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: #3a7bc8;
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

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

.gdpr-table th,
.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.gdpr-table td,
.cookies-table td {
    font-size: 14px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        gap: 20px;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .intro-layout,
    .philosophy-container,
    .form-container-split,
    .about-intro-split,
    .team-layout-split,
    .facility-split,
    .contact-split,
    .service-detail-block {
        flex-direction: column;
        gap: 40px;
    }

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

    .intro-text h2,
    .philosophy-content h2,
    .team-content h2,
    .facility-content h2,
    .contact-details h2,
    .cta-about-content h2 {
        font-size: 32px;
    }

    .section-header h2,
    .values-section h2,
    .approach-container h2,
    .packages-section h2,
    .faq-section h2,
    .contact-form-section h2 {
        font-size: 34px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .gdpr-table,
    .cookies-table {
        font-size: 12px;
    }

    .gdpr-table th,
    .gdpr-table td,
    .cookies-table th,
    .cookies-table td {
        padding: 10px;
    }
}
