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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.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;
    min-width: 300px;
}

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

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

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

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

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.main-nav {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.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-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

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

.ad-label {
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
}

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

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

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

.hero-left p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #34495e;
    max-width: 550px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 18px 40px;
    background: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.intro-split {
    display: flex;
    align-items: stretch;
}

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

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

.intro-content {
    flex: 1;
    padding: 70px 60px;
    background: white;
}

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

.intro-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.8;
}

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

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

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

.section-header-center p {
    font-size: 18px;
    color: #7f8c8d;
}

.service-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: white;
    width: calc(33.333% - 20px);
    min-width: 350px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

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

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

.service-info {
    padding: 30px;
}

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

.service-info p {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: #7f8c8d;
}

.btn-select {
    width: 100%;
    padding: 15px;
    background: #3498db;
    color: white;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.booking-split {
    display: flex;
    align-items: stretch;
}

.booking-content {
    flex: 1;
    padding: 70px 60px;
    background: white;
}

.booking-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.booking-content > p {
    font-size: 16px;
    margin-bottom: 35px;
    color: #7f8c8d;
}

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

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

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

.form-group input {
    width: 100%;
    padding: 14px;
    border: 2px solid #ecf0f1;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #f8f9fa;
    color: #7f8c8d;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #27ae60;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

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

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

.trust-section {
    display: flex;
    align-items: stretch;
}

.trust-left {
    flex: 1;
    padding: 70px 60px;
    background: #ecf0f1;
}

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

.trust-item {
    margin-bottom: 35px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.trust-item p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.7;
}

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

.trust-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

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

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

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

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

.footer-section a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

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

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

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

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-content a:hover {
    background: #2980b9;
}

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

.page-container h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.page-container h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-container h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.page-container ul, .page-container ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-info {
    flex: 1;
    padding: 60px 50px;
    background: #ecf0f1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

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

.contact-detail p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #34495e;
}

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

.about-header {
    padding: 80px 40px;
    background: #ecf0f1;
    text-align: center;
}

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

.about-header p {
    font-size: 20px;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    align-items: stretch;
}

.about-content {
    flex: 1;
    padding: 70px 60px;
    background: white;
}

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

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

.about-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #2c3e50;
}

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

.services-page-header {
    padding: 80px 40px;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.services-page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.services-page-header p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

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

    .hero-left, .intro-content, .booking-content, .trust-left, .about-content, .contact-info {
        padding: 50px 30px;
    }

    .hero-right, .intro-image, .booking-image, .trust-right, .about-visual, .contact-visual {
        min-height: 400px;
    }

    .service-card {
        width: calc(50% - 15px);
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }

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

    .section-header-center h2 {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .service-card {
        width: 100%;
        min-width: 0;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .logo {
        font-size: 20px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}