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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    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-buttons {
    display: flex;
    gap: 10px;
}

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
}

.nav-disclosure {
    flex: 1;
    text-align: center;
}

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 5px 12px;
    border-radius: 4px;
}

.nav-menu {
    list-style: none;
    display: flex;
    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;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

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

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

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

.hero-image {
    flex: 1;
    background: #e0e0e0;
}

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

.cta-button {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-button:hover {
    background: #2980b9;
}

.intro-section,
.value-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-image {
    flex: 1;
    background: #ecf0f1;
}

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

.split-content {
    flex: 1;
}

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

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

.value-list {
    list-style: none;
    margin: 25px 0;
}

.value-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.value-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

.link-cta {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    transition: color 0.3s;
}

.link-cta:hover {
    color: #2980b9;
    border-color: #2980b9;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e0e0e0;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 20px;
    margin-bottom: 15px;
    color: #555;
    flex: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: bold;
    color: #27ae60;
    padding: 0 20px;
    margin-bottom: 15px;
    display: block;
}

.btn-service {
    display: block;
    background: #3498db;
    color: #ffffff;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    margin: 0 20px 20px;
    border-radius: 5px;
}

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

.services-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.testimonials-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.testimonials-split {
    display: flex;
    gap: 40px;
}

.testimonial-item {
    flex: 1;
    background: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #3498db;
}

.testimonial-item blockquote {
    font-style: italic;
}

.testimonial-item p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.booking-section {
    background: #ecf0f1;
    padding: 80px 40px;
}

.booking-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

.disclaimer-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 30px 40px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.disclaimer-section p {
    color: #856404;
    font-size: 14px;
}

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

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

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col p {
    color: #bdc3c7;
}

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.thanks-container p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.thanks-container .btn-primary {
    margin-top: 30px;
}

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

.contact-info h3 {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info p {
    margin-bottom: 10px;
    color: #555;
}

.info-row {
    margin-bottom: 8px;
}

.info-row strong {
    display: inline-block;
    width: 150px;
    color: #2c3e50;
}

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

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 15px;
    color: #555;
}

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

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

.about-hero {
    background: #f8f9fa;
    padding: 80px 40px;
}

.about-hero h1 {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 48px;
    color: #1a1a1a;
}

.about-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

.about-split {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
}

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

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

.services-list {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.services-list h1 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.service-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background: #e0e0e0;
}

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

.service-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-details p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.service-details .price {
    font-size: 32px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-details .btn-primary {
    align-self: flex-start;
}

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

    .split-layout.reverse,
    .about-split.reverse,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

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

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

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

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