* {
    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-color: #ffffff;
}

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-right a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #2c3e50;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #e8eef3;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
    background-color: #3d5a80;
}

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

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

.cta-primary:hover {
    background-color: #d62828;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 38px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    border: 2px solid #2c3e50;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.intro-offset {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.9;
    color: #5a6c7d;
}

.intro-visual {
    flex: 0.8;
    background-color: #f1f3f5;
    border-radius: 8px;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-alternating {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.services-alternating > h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    color: #2c3e50;
}

.service-row {
    display: flex;
    gap: 60px;
    margin-bottom: 90px;
    align-items: center;
}

.service-row.left-align {
    flex-direction: row;
}

.service-row.right-align {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    height: 380px;
}

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

.service-info {
    flex: 1;
    padding: 30px 0;
}

.service-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #2c3e50;
}

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

.price {
    font-size: 36px;
    font-weight: 800;
    color: #e63946;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.booking-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.booking-container h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #2c3e50;
    text-align: center;
}

.booking-container > p {
    text-align: center;
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 50px;
}

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

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

.form-row label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.submit-btn {
    padding: 16px 40px;
    background-color: #e63946;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.why-choose {
    padding: 100px 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

.why-choose h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 70px;
}

.benefits-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px 30px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #e8eef3;
}

.footer {
    background-color: #1a252f;
    color: #e8eef3;
    padding: 60px 60px 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #adb5bd;
}

.footer-col a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    max-width: 900px;
    margin: 20px auto 0;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px 60px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #2c3e50;
    line-height: 1.6;
}

.cookie-content a {
    color: #e63946;
    text-decoration: underline;
}

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

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

.cookie-accept {
    background-color: #2c3e50;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1a252f;
}

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

.cookie-reject:hover {
    border-color: #2c3e50;
}

.page-hero {
    padding: 80px 60px 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.page-hero p {
    font-size: 18px;
    color: #e8eef3;
    max-width: 700px;
}

.about-content {
    padding: 80px 60px;
}

.about-split {
    display: flex;
    gap: 70px;
    margin-bottom: 90px;
    align-items: center;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.about-image {
    flex: 0.8;
    background-color: #f1f3f5;
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
}

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

.about-values {
    margin-bottom: 80px;
}

.about-values h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 45px;
    color: #2c3e50;
    text-align: center;
}

.values-list {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

.team-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.services-grid {
    padding: 80px 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 450px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-card-image {
    height: 250px;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.service-card-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

.service-features li {
    font-size: 14px;
    color: #6c757d;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e63946;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #e63946;
    margin-bottom: 20px;
    margin-top: auto;
}

.booking-cta {
    padding: 80px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.booking-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.booking-cta p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 35px;
}

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

.contact-split {
    display: flex;
    gap: 70px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1.2;
}

.contact-info h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

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

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.contact-image {
    flex: 0.8;
    background-color: #f1f3f5;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

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

.location-info {
    max-width: 900px;
    margin: 0 auto;
}

.location-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.thanks-section {
    display: flex;
    min-height: 600px;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
}

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

.thanks-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 25px;
    max-width: 550px;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    max-width: 550px;
}

.thanks-details p {
    margin-bottom: 10px;
}

.thanks-details strong {
    color: #2c3e50;
}

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

.thanks-image {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.next-steps {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.next-steps h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.steps-container {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2c3e50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

.legal-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

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

@media (max-width: 968px) {
    .hero-split,
    .intro-offset,
    .service-row,
    .about-split,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

    .service-row.right-align {
        flex-direction: column;
    }

    .nav-right {
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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