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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #0f3460;
    --accent-color: #e94560;
    --light-bg: #f9f9f9;
    --dark-text: #2d2d2d;
    --light-text: #ffffff;
    --gray-text: #666666;
    --border-color: #e0e0e0;
}

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.nav-links {
    display: none;
    gap: 30px;
    align-items: center;
}

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

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

.ad-label {
    font-size: 12px;
    background-color: #f0f0f0;
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--gray-text);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    display: block;
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px 20px;
    background-color: var(--primary-color);
    color: var(--light-text);
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-right {
    width: 100%;
}

.hero-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.cta-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #0a2540;
}

.intro-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.intro-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-text);
}

.features-split {
    padding: 60px 20px;
}

.feature-card-left {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card-left img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.feature-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.feature-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-text);
}

.services-preview {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 800;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-block {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

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

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

.price-tag {
    display: inline-block;
    font-size: 24px;
    color: var(--accent-color);
    font-weight: 700;
}

.split-content-reverse {
    display: flex;
    flex-direction: column;
    padding: 80px 20px;
}

.content-right {
    padding: 0 20px 40px;
    max-width: 600px;
}

.content-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.content-left img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.testimonial-inline {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.testimonial-inline blockquote {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-inline cite {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    opacity: 0.9;
}

.approach-section {
    padding: 80px 20px;
}

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

.approach-left {
    margin-bottom: 40px;
}

.approach-left h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

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

.approach-right img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.cta-section-inline {
    padding: 80px 20px;
    background-color: var(--light-bg);
    text-align: center;
}

.cta-section-inline h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.cta-section-inline p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--gray-text);
}

.additional-services-split {
    padding: 60px 20px;
}

.service-detail-left {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-left .service-content {
    margin-bottom: 30px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 15px;
}

.price-info {
    display: inline-block;
    font-size: 22px;
    color: var(--accent-color);
    font-weight: 700;
}

.service-detail-left img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

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

.form-wrapper-split {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
    gap: 40px;
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-text);
}

.form-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.service-form .form-group {
    margin-bottom: 20px;
}

.service-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
}

.service-form input,
.service-form select,
.service-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.trust-section {
    padding: 80px 20px;
}

.trust-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.trust-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-text);
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-col p,
.footer-col ul {
    font-size: 15px;
    opacity: 0.8;
}

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

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

.footer-col a {
    color: var(--light-text);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 0.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

.disclaimer-text {
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.7;
}

.page-hero {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 800;
}

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

.about-split {
    display: flex;
    flex-direction: column;
    padding: 80px 20px;
}

.about-content-left {
    margin-bottom: 40px;
    max-width: 600px;
}

.about-content-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

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

.philosophy-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.team-split {
    display: flex;
    flex-direction: column;
    padding: 80px 20px;
}

.team-image-left {
    margin-bottom: 40px;
}

.team-image-left img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.team-content-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 800;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-text);
}

.facilities-split {
    display: flex;
    flex-direction: column;
    padding: 80px 20px;
}

.facilities-content-left {
    margin-bottom: 40px;
    max-width: 600px;
}

.facilities-content-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.facilities-image-right img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.commitment-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.commitment-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.cta-section {
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--gray-text);
}

.services-intro {
    padding: 40px 20px;
}

.services-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-text);
}

.service-detail-split {
    padding: 80px 20px;
}

.service-left {
    max-width: 900px;
    margin: 0 auto;
}

.service-left img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.service-left .service-info h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-left .service-info p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 16px;
    color: var(--gray-text);
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

.service-pricing {
    margin: 25px 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-amount {
    font-size: 28px;
    color: var(--accent-color);
    font-weight: 700;
}

.price-note {
    font-size: 14px;
    color: var(--gray-text);
}

.service-detail-split-reverse {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.service-right {
    max-width: 900px;
    margin: 0 auto;
}

.service-right .service-info {
    margin-bottom: 30px;
}

.service-right .service-info h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-right img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.additional-info {
    padding: 80px 20px;
    background-color: #ffffff;
}

.additional-info h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-item {
    padding: 25px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-text);
}

.contact-content {
    padding: 60px 20px;
}

.contact-split {
    display: flex;
    flex-direction: column;
}

.contact-info-left {
    margin-bottom: 40px;
}

.contact-info-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-info-left p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 8px;
}

.contact-item .note {
    font-size: 14px;
    font-style: italic;
    color: #999;
    margin-top: 5px;
}

.contact-visual-right img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.location-section {
    padding: 60px 20px;
    background-color: var(--light-bg);
}

.location-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.location-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-text);
}

.visit-info {
    padding: 60px 20px;
}

.info-split {
    display: flex;
    flex-direction: column;
}

.info-left {
    margin-bottom: 40px;
    max-width: 600px;
}

.info-left h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.info-left p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 15px;
}

.info-right img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

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

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-item {
    margin-bottom: 30px;
}

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

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

.next-steps {
    padding: 80px 20px;
}

.next-steps h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--light-text);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 15px;
}

.step-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

.thanks-hero {
    padding: 100px 20px 60px;
    background-color: var(--light-bg);
    text-align: center;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 800;
}

.lead-text {
    font-size: 20px;
    color: var(--gray-text);
    line-height: 1.7;
}

.thanks-details {
    padding: 80px 20px;
}

.thanks-details h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
}

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

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.timeline-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-text);
}

.service-reminder {
    padding: 40px 20px;
    background-color: #e8f4f8;
}

.service-info {
    font-size: 17px;
    color: var(--dark-text);
    text-align: center;
}

.further-info {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.further-info h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.info-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.info-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 15px;
}

.link-arrow {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: var(--accent-color);
}

.preparation-tips {
    padding: 80px 20px;
}

.preparation-tips h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

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

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

.contact-alternative {
    padding: 60px 20px;
    background-color: var(--light-bg);
    text-align: center;
}

.contact-alternative p {
    font-size: 17px;
    color: var(--gray-text);
    margin-bottom: 10px;
}

.email-display {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.legal-page {
    padding: 60px 20px;
}

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

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 800;
}

.last-updated {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-weight: 700;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--dark-text);
    font-weight: 600;
}

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

.legal-content ul {
    margin: 15px 0 15px 25px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.3s;
}

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

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

    .mobile-menu-toggle {
        display: none;
    }

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

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

    .hero-right img {
        height: 100%;
    }

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

    .feature-card-left {
        flex-direction: row;
        gap: 50px;
        align-items: center;
    }

    .feature-card-left img {
        width: 45%;
        height: 350px;
        margin-bottom: 0;
    }

    .feature-text {
        flex: 1;
    }

    .services-grid-split {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-block {
        flex: 1;
        min-width: 300px;
    }

    .split-content-reverse {
        flex-direction: row-reverse;
        gap: 60px;
        align-items: center;
    }

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

    .content-right {
        padding: 0;
    }

    .approach-split {
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }

    .approach-left {
        flex: 1;
        margin-bottom: 0;
    }

    .approach-right {
        flex: 1;
    }

    .approach-right img {
        height: 400px;
    }

    .service-detail-left {
        flex-direction: row;
        gap: 50px;
        align-items: flex-start;
    }

    .service-detail-left .service-content {
        flex: 1;
        margin-bottom: 0;
    }

    .service-detail-left img {
        width: 40%;
        height: 320px;
    }

    .form-wrapper-split {
        flex-direction: row;
    }

    .form-intro,
    .form-container {
        flex: 1;
    }

    .about-split {
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }

    .about-content-left {
        flex: 1;
        margin-bottom: 0;
    }

    .about-image-right {
        flex: 1;
    }

    .team-split {
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }

    .team-image-left {
        flex: 1;
        margin-bottom: 0;
    }

    .team-content-right {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1;
        min-width: 250px;
    }

    .facilities-split {
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }

    .facilities-content-left {
        flex: 1;
        margin-bottom: 0;
    }

    .facilities-image-right {
        flex: 1;
    }

    .service-left img {
        height: 400px;
    }

    .service-right img {
        height: 400px;
    }

    .info-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-item {
        flex: 1;
        min-width: 250px;
    }

    .contact-split {
        flex-direction: row;
        gap: 60px;
        align-items: flex-start;
    }

    .contact-info-left {
        flex: 1;
        margin-bottom: 0;
    }

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

    .info-split {
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }

    .info-left {
        flex: 1;
        margin-bottom: 0;
    }

    .info-right {
        flex: 1;
    }

    .steps-grid {
        flex-direction: row;
    }

    .step-item {
        flex: 1;
    }

    .info-cards {
        flex-direction: row;
    }

    .info-card {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 767px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
}