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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.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-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px 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: bold;
    color: #2c3e50;
    text-decoration: none;
}

.nav-ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

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

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

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.hero-image {
    flex: 1;
    background: #bdc3c7;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    background: #3498db;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

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

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border: 2px solid #fff;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #fff;
    color: #2c3e50;
}

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

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

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

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

.split-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
}

.split-image {
    flex: 1;
    background: #95a5a6;
    position: relative;
    overflow: hidden;
}

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

.services-grid {
    padding: 80px 40px;
    background: #fff;
}

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

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

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

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

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 250px;
    background: #bdc3c7;
    overflow: hidden;
}

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

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

.service-card p {
    font-size: 15px;
    margin: 0 20px 16px;
    color: #555;
    line-height: 1.5;
}

.service-price {
    font-size: 24px;
    font-weight: bold;
    color: #27ae60;
    margin: 0 20px 20px;
}

.btn-select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    background: #3498db;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 14px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.disclaimer-section {
    background: #f8f9fa;
    padding: 40px;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.disclaimer-content p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
}

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

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

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

.thanks-message {
    text-align: center;
    padding: 100px 40px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.thanks-message p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #555;
    max-width: 600px;
}

.info-section {
    padding: 80px 40px;
}

.info-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.info-content h2 {
    font-size: 28px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.info-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.info-content ul {
    margin: 16px 0;
    padding-left: 30px;
}

.info-content li {
    margin-bottom: 8px;
    color: #555;
}

.contact-section {
    padding: 80px 40px;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
}

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

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

.about-hero p {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.about-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background: #95a5a6;
}

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

@media (max-width: 768px) {
    .hero-split,
    .split-section,
    .about-split {
        flex-direction: column;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .service-card {
        flex: 0 0 100%;
    }

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

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