* {
    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;
    background: #ffffff;
}

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

.cookie-banner.show {
    display: flex;
    justify-content: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    border: 1px solid #ecf0f1;
    border-radius: 4px;
    background: #f8f9fa;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    background: #2c3e50;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.intro-split {
    display: flex;
    min-height: 70vh;
}

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

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

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

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background: #f8f9fa;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.services-showcase {
    padding: 5rem 5%;
    background: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.service-row {
    display: flex;
    margin-bottom: 4rem;
    min-height: 500px;
}

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

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 4rem;
    background: #f8f9fa;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.6rem 0;
    color: #555;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

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

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 1rem 2rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

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

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

.booking-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.booking-container {
    display: flex;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.booking-info {
    flex: 1;
    color: white;
}

.booking-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.booking-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.selected-service-info {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.selected-service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.selected-service-info p {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.booking-form-wrapper {
    flex: 1;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-submit:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

.testimonials-split {
    display: flex;
    min-height: 70vh;
}

.testimonials-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background: #2c3e50;
    color: white;
}

.testimonials-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #667eea;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 600;
}

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

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

.footer-split {
    background: #1a1a1a;
    color: #ecf0f1;
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 5%;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.page-content {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.page-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: #555;
}

.contact-split {
    display: flex;
    min-height: 70vh;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background: #2c3e50;
    color: white;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #667eea;
}

.contact-detail p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background: #ecf0f1;
}

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-content {
    background: white;
    padding: 4rem;
    border-radius: 12px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.thanks-content a {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-content a:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

@media (max-width: 968px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-split,
    .intro-split,
    .service-row,
    .testimonials-split,
    .contact-split,
    .booking-container {
        flex-direction: column;
    }

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

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .main-nav {
        gap: 1rem;
    }

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

@media (max-width: 640px) {
    .hero-left h1 {
        font-size: 1.8rem;
    }

    .hero-left p {
        font-size: 1rem;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .price-tag {
        font-size: 2rem;
    }
}