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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.hidden {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

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

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2980b9;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    max-width: 150px;
}

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

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2980b9;
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 550px;
    padding: 0;
}

.hero-left {
    flex: 1;
    padding: 60px 80px;
    background-color: #ecf0f1;
}

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

.hero-left p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 30px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2980b9;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #2980b9;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2980b9;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2980b9;
    color: #ffffff;
}

.intro-asymmetric {
    display: flex;
    align-items: flex-start;
    padding: 80px 60px;
    gap: 60px;
}

.intro-text-offset {
    flex: 1.2;
    padding-right: 40px;
}

.intro-text-offset h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
}

.intro-text-offset p {
    font-size: 17px;
    color: #34495e;
}

.intro-visual {
    flex: 0.8;
}

.intro-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.services-preview-split {
    display: flex;
    align-items: stretch;
    padding: 0;
    background-color: #f8f9fa;
}

.services-left {
    flex: 0.9;
}

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

.services-right {
    flex: 1.1;
    padding: 60px;
}

.services-right h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.services-right > p {
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.service-card {
    background-color: #ffffff;
    padding: 28px;
    margin-bottom: 24px;
    border-left: 4px solid #2980b9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: #34495e;
    margin-bottom: 16px;
}

.service-card .price {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 16px;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #2980b9;
    color: #ffffff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #21618c;
}

.services-grid {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card-alt {
    flex: 0 1 calc(33.333% - 20px);
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.service-card-alt h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 14px;
}

.service-card-alt p {
    font-size: 15px;
    color: #34495e;
    margin-bottom: 18px;
}

.service-card-alt .price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 16px;
}

.testimonials-split {
    display: flex;
    align-items: flex-start;
    padding: 80px 60px;
    background-color: #ecf0f1;
    gap: 60px;
}

.testimonials-left {
    flex: 0.8;
}

.testimonials-left h2 {
    font-size: 36px;
    color: #2c3e50;
}

.testimonials-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-item {
    background-color: #ffffff;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-item p {
    font-size: 16px;
    font-style: italic;
    color: #34495e;
    margin-bottom: 12px;
}

.testimonial-item cite {
    font-size: 14px;
    color: #7f8c8d;
    font-style: normal;
}

.cta-inline {
    padding: 60px 80px;
    background-color: #2980b9;
    text-align: center;
}

.cta-inline h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-inline p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 30px;
}

.about-split {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    gap: 60px;
}

.about-left {
    flex: 1;
}

.about-left h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
}

.about-left p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 20px;
}

.about-right {
    flex: 1;
}

.about-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.form-section-split {
    display: flex;
    align-items: stretch;
    padding: 0;
    background-color: #f8f9fa;
}

.form-left {
    flex: 0.8;
    padding: 60px;
    background-color: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-left p {
    font-size: 17px;
    color: #ecf0f1;
}

.form-right {
    flex: 1.2;
    padding: 60px;
}

.booking-form {
    max-width: 500px;
}

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

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

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #2980b9;
}

.form-control[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    padding: 14px 40px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.final-cta {
    padding: 80px 60px;
    text-align: center;
    background: linear-gradient(135deg, #2980b9 0%, #2c3e50 100%);
    color: #ffffff;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 18px;
}

.final-cta p {
    font-size: 19px;
    margin-bottom: 30px;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 60px 20px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: #95a5a6;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.page-hero-split {
    display: flex;
    align-items: center;
    min-height: 400px;
    padding: 0;
}

.story-split {
    display: flex;
    align-items: flex-start;
    padding: 80px 60px;
    gap: 60px;
    background-color: #f8f9fa;
}

.story-text {
    flex: 1.3;
}

.story-text h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
}

.story-text p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 20px;
}

.story-image {
    flex: 0.7;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.values-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

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

.value-card {
    flex: 0 1 calc(50% - 15px);
    padding: 32px;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 14px;
}

.value-card p {
    font-size: 16px;
    color: #34495e;
}

.team-split {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    gap: 60px;
    background-color: #f8f9fa;
}

.team-left {
    flex: 1;
}

.team-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.team-right {
    flex: 1;
}

.team-right h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
}

.team-right p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 20px;
}

.mission-split {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    gap: 60px;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
}

.mission-text p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 20px;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-detail-split {
    display: flex;
    align-items: center;
    padding: 60px;
    gap: 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background-color: #f8f9fa;
}

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

.service-detail-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-detail-left h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-detail-left p {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 16px;
}

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

.service-detail-right h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-detail-right p {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 16px;
}

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

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #34495e;
}

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

.service-price-block {
    margin: 24px 0;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
    margin-right: 10px;
}

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

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

.cta-section p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 30px;
}

.contact-split {
    display: flex;
    align-items: flex-start;
    padding: 80px 60px;
    gap: 60px;
}

.contact-left {
    flex: 1;
}

.contact-info-block {
    margin-bottom: 36px;
}

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

.contact-info-block p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.8;
}

.contact-right {
    flex: 1;
}

.contact-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.map-section {
    padding: 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.map-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.map-section p {
    font-size: 16px;
    color: #34495e;
}

.thanks-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background-color: #ecf0f1;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 20px;
}

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

.legal-page h1 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 26px;
    color: #2c3e50;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 20px;
    color: #34495e;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-page ul {
    margin: 16px 0;
    padding-left: 40px;
}

.legal-page ul li {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-page a {
    color: #2980b9;
    text-decoration: none;
}

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

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

    .header-right {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-split,
    .services-preview-split,
    .about-split,
    .form-section-split,
    .story-split,
    .team-split,
    .mission-split,
    .service-detail-split,
    .service-detail-split.reverse,
    .contact-split,
    .testimonials-split,
    .intro-asymmetric {
        flex-direction: column;
    }

    .hero-left,
    .services-right,
    .form-left,
    .form-right,
    .story-text,
    .team-right,
    .mission-text,
    .service-detail-left,
    .service-detail-right,
    .contact-left,
    .about-left {
        padding: 40px 20px;
    }

    .footer-columns {
        flex-direction: column;
    }

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

    .service-card-alt,
    .value-card {
        flex: 1 1 100%;
    }
}