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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.cookie-banner.active {
    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;
    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: #28a745;
    color: #fff;
}

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

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

.btn-reject:hover {
    background: #fff;
    color: #1a1a1a;
}

.main-nav {
    background: #fff;
    box-shadow: 0 2px 8px 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;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d5a7b;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

.nav-links a:hover {
    color: #2d5a7b;
}

.nav-ad-label {
    font-size: 12px;
    color: #666;
    font-style: italic;
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
}

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

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #2d5a7b;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.hero-right {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
}

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

.intro-section {
    padding: 80px 40px;
    background: #fff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.container-narrow h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.container-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.services-split {
    background: #f8f9fa;
}

.service-row {
    display: flex;
    min-height: 500px;
}

.service-visual,
.service-info {
    flex: 1;
}

.service-visual {
    position: relative;
}

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

.service-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: #fff;
}

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

.service-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #555;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2d5a7b;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 32px;
    background: #2d5a7b;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #1f3f56;
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 80px 40px;
    background: #fff;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #333;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #2d5a7b;
}

.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #2d5a7b 0%, #1f3f56 100%);
    color: #fff;
    text-align: center;
}

.cta-content-wrapper h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content-wrapper p {
    font-size: 19px;
    margin-bottom: 32px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #2d5a7b;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro {
    margin-bottom: 32px;
    color: #555;
    font-size: 16px;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5a7b;
}

.form-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    display: none;
}

.form-notice.active {
    display: block;
}

.btn-submit {
    padding: 16px;
    background: #2d5a7b;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1f3f56;
}

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 40px 20px;
}

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

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

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

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

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

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

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

.footer-column ul li a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 14px;
    color: #999;
}

@media (max-width: 968px) {
    .hero-split,
    .service-row {
        flex-direction: column;
    }

    .service-row.reverse {
        flex-direction: column;
    }

    .nav-container {
        flex-wrap: wrap;
    }

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

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