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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    border-bottom: 1px solid #e1e8ed;
    padding: 8px 20px;
    text-align: center;
}

.ad-disclosure p {
    font-size: 13px;
    color: #5a6c7d;
    margin: 0;
}

.header-split {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-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: #2c3e50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #5a6c7d;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-content-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #5a6c7d;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #2980b9;
}

.hero-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.info-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.info-split.reverse {
    flex-direction: row-reverse;
}

.info-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.info-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.info-content {
    flex: 1;
    padding: 40px 60px;
}

.info-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.info-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.info-content a {
    color: #3498db;
    font-weight: 600;
}

.benefit-list {
    list-style: none;
    margin-top: 30px;
}

.benefit-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #5a6c7d;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

.services-preview {
    background: #f8f9fa;
    padding: 80px 40px;
}

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

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header-centered p {
    font-size: 18px;
    color: #5a6c7d;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.card-image {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 25px 25px 10px;
    font-size: 24px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 25px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
}

.price {
    padding: 0 25px 20px;
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.select-service {
    margin: 0 25px 25px;
    width: calc(100% - 50px);
    padding: 14px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #2980b9;
}

.cta-centered {
    text-align: center;
    margin-top: 50px;
}

.cta-centered a {
    display: inline-block;
    padding: 14px 32px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-centered a:hover {
    background: #34495e;
}

.split-content {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
}

.form-content-left {
    flex: 1;
}

.form-content-left h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-content-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #5a6c7d;
}

.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.trust-item strong {
    font-size: 18px;
    color: #2c3e50;
}

.trust-item span {
    font-size: 15px;
    color: #5a6c7d;
}

.form-container-right {
    flex: 1;
}

.main-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d9e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #229954;
}

.testimonials-full {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.testimonials-full h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

.disclaimer-section {
    background: #fef9e7;
    padding: 60px 40px;
    margin: 80px auto;
}

.disclaimer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding-top: 40px;
    border-top: 1px solid #34495e;
}

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

.footer-references ol {
    padding-left: 20px;
}

.footer-references ol li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-references ol li a {
    color: #3498db;
    text-decoration: none;
}

.footer-references ol li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #bdc3c7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
    line-height: 1.6;
    color: #ecf0f1;
}

.cookie-content a {
    color: #3498db;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.cookie-btn.reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-btn.reject:hover {
    background: #34495e;
}

.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.page-hero img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    font-size: 52px;
    color: #ffffff;
    text-align: center;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

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

.philosophy-section {
    background: #f8f9fa;
    padding: 80px 40px;
}

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

.philosophy-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.philosophy-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.team-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-intro {
    text-align: center;
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 60px;
}

.team-split {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 320px;
}

.member-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
}

.member-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.member-info h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.role {
    font-size: 16px;
    color: #3498db;
    margin-bottom: 15px;
}

.member-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.facilities-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.facilities-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.facility-text {
    flex: 1;
}

.facility-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #5a6c7d;
}

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

.facilities-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #5a6c7d;
}

.facilities-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.facility-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.facility-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-full {
    background: #3498db;
    padding: 80px 40px;
    text-align: center;
    color: #ffffff;
}

.cta-full h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-full p {
    font-size: 18px;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    padding: 16px 38px;
    background: #ffffff;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #ecf0f1;
}

.page-header {
    max-width: 1400px;
    margin: 60px auto 80px;
    padding: 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-header p {
    font-size: 18px;
    color: #5a6c7d;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

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

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

.service-left {
    flex: 1;
}

.service-right {
    flex: 1;
}

.service-image {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-right h2,
.service-left h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
}

.price-note {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.service-right p,
.service-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #5a6c7d;
}

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

.features-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #5a6c7d;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
}

.select-service-btn {
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #2980b9;
}

.additional-info {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.additional-info h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.info-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.form-section-centered {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

.form-section-centered h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-section-centered > p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.centered-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
}

.submit-large {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-large:hover {
    background: #229954;
}

.contact-hero {
    max-width: 1400px;
    margin: 60px auto 80px;
    padding: 0 40px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-hero p {
    font-size: 18px;
    color: #5a6c7d;
}

.contact-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
    gap: 60px;
}

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

.contact-info-left h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
}

.note {
    font-size: 15px;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 10px;
}

.contact-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.contact-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.directions-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.directions-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.directions-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.direction-method {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.direction-method h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.direction-method p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #5a6c7d;
}

.visit-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 12px;
}

.visit-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.visit-section > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #5a6c7d;
}

.visit-info {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.visit-item {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.visit-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.visit-item p {
    font-size: 15px;
    color: #5a6c7d;
}

.contact-cta {
    display: inline-block;
    padding: 16px 38px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.contact-cta:hover {
    background: #2980b9;
}

.thanks-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 80px 40px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

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

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.thanks-details {
    margin-bottom: 40px;
}

.service-selected {
    font-size: 17px;
    color: #2c3e50;
    padding: 20px;
    background: #e8f5e9;
    border-radius: 8px;
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #3498db;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

.faq-thanks {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
}

.faq-thanks h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.faq-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.legal-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px 80px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.last-updated {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.legal-content h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #5a6c7d;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .info-split,
    .about-split,
    .split-content,
    .contact-layout,
    .facilities-content {
        flex-direction: column;
    }

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

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

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

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