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

:root {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-color: #3182ce;
    --text-color: #2d3748;
    --light-bg: #f7fafc;
    --white: #ffffff;
    --gray-light: #e2e8f0;
    --gray-medium: #a0aec0;
    --gray-dark: #4a5568;
}

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

.ad-notice {
    background-color: #fef5e7;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #f4e4c1;
}

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

.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: 32px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 32px;
}

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

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

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.2s;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

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

.content-left {
    flex: 1;
    background-color: var(--gray-light);
}

.content-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.benefits-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: var(--light-bg);
}

.benefits-grid h2 {
    font-size: 42px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 700;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

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

.featured-image {
    flex: 1;
    background-color: var(--gray-light);
}

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

.featured-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

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

.inline-cta {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.2s;
    cursor: pointer;
}

.inline-cta:hover {
    color: var(--secondary-color);
}

.testimonials-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: var(--light-bg);
}

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

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

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 32px;
    background-color: var(--white);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

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

.testimonial .author {
    font-size: 15px;
    color: var(--gray-dark);
    font-style: normal;
    font-weight: 600;
}

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

.cta-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: var(--primary-color);
    padding: 60px;
    border-radius: 8px;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-text p {
    font-size: 17px;
    color: var(--light-bg);
    line-height: 1.7;
}

.cta-action {
    flex-shrink: 0;
}

.cta-button-large {
    display: inline-block;
    padding: 20px 48px;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 4px;
    transition: transform 0.2s;
}

.cta-button-large:hover {
    transform: translateY(-2px);
}

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

.page-header h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    color: var(--gray-dark);
}

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

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

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

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.mission-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

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

.mission-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 24px;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
    background-color: var(--light-bg);
}

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

.values-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

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

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

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

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

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

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.approach-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.approach-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

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

.commitment-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: var(--light-bg);
}

.commitment-split {
    display: flex;
    gap: 60px;
}

.commitment-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.commitment-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

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

.commitment-image {
    flex: 1;
    background-color: var(--gray-light);
}

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

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

.intro-content-centered {
    text-align: center;
}

.intro-content-centered h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

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

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 450px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
}

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

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

.service-content {
    padding: 32px;
}

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

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

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

.service-features li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 15px;
    color: var(--gray-dark);
}

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

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.duration {
    font-size: 15px;
    color: var(--gray-dark);
}

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

.select-service-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.select-service-btn:hover {
    background-color: var(--secondary-color);
}

.booking-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: var(--light-bg);
}

.booking-section h2 {
    font-size: 42px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 48px;
    font-weight: 700;
}

.booking-container {
    background-color: var(--white);
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

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

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

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

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 32px;
}

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

.info-block p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
}

.contact-image {
    flex: 1;
    background-color: var(--gray-light);
    height: 600px;
}

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

.directions-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: var(--light-bg);
}

.directions-section h2 {
    font-size: 38px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 32px;
    font-weight: 700;
}

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

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

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

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

.faq-item {
    flex: 1;
    min-width: 300px;
    padding: 28px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

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

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

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.thanks-content {
    background-color: var(--light-bg);
    padding: 60px;
    border-radius: 8px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-content > p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 32px;
}

.thanks-details {
    background-color: var(--white);
    padding: 24px;
    border-radius: 4px;
    margin-bottom: 40px;
    text-align: left;
}

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

.thanks-details strong {
    color: var(--primary-color);
}

.next-steps {
    background-color: var(--white);
    padding: 32px;
    border-radius: 4px;
    margin-bottom: 40px;
    text-align: left;
}

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

.next-steps ol {
    padding-left: 24px;
}

.next-steps li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 12px;
}

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

.secondary-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--white);
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    transition: all 0.2s;
}

.secondary-button:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

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

.legal-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-text h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-top: 28px;
    margin-bottom: 14px;
    font-weight: 600;
}

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

.legal-text ul {
    margin: 16px 0 16px 24px;
}

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

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--light-bg);
}

.footer-column a {
    display: block;
    color: var(--light-bg);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 32px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--light-bg);
}

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

.footer-bottom p {
    font-size: 14px;
    color: var(--light-bg);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    padding: 24px;
    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: 32px;
}

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

.cookie-accept:hover {
    background-color: var(--secondary-color);
}

.cookie-reject {
    background-color: var(--gray-light);
    color: var(--text-color);
}

.cookie-reject:hover {
    background-color: var(--gray-medium);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-section,
    .featured-split,
    .about-split,
    .values-split,
    .contact-split,
    .commitment-split,
    .cta-content-split {
        flex-direction: column;
    }

    .featured-split.reverse,
    .values-split.reverse {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .benefits-container,
    .approach-grid,
    .faq-grid {
        flex-direction: column;
    }

    .testimonials-flex {
        flex-direction: column;
    }

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

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