* {
    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;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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;
    min-width: 300px;
}

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4a90e2;
    color: #ffffff;
}

.btn-accept:hover {
    background: #357abd;
}

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

.btn-reject:hover {
    background: #333333;
}

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

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

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

.main-nav {
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #4a90e2;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    background: #f8f9fa;
}

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

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

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

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

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

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

.intro-block {
    padding: 80px 20px;
    background: #ffffff;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    color: #2c3e50;
}

.split-reverse {
    display: flex;
    align-items: center;
}

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

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

.split-content {
    flex: 1;
    padding: 60px 50px;
    background: #f4f4f4;
}

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

.split-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444444;
}

.services-section {
    padding: 100px 20px;
    background: #ffffff;
}

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

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 300px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-card.selected {
    border: 2px solid #4a90e2;
    box-shadow: 0 4px 16px rgba(74,144,226,0.3);
}

.service-image {
    width: 100%;
    height: 240px;
    background: #e8e8e8;
}

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

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

.service-card p {
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 16px;
}

.price {
    padding: 0 20px;
    font-size: 32px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 20px;
}

.select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background: #f0f0f0;
    border: 2px solid #d0d0d0;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #e0e0e0;
    border-color: #4a90e2;
}

.service-card.selected .select-service {
    background: #4a90e2;
    color: #ffffff;
    border-color: #4a90e2;
}

.testimonial-inline {
    padding: 80px 20px;
    background: #2c3e50;
    color: #ffffff;
}

.testimonial-inline blockquote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-inline p {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-inline cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

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

.process-content {
    flex: 1;
    padding: 80px 50px;
    background: #f8f9fa;
}

.process-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: #4a90e2;
    min-width: 50px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}

.process-image {
    flex: 1;
    background: #d8d8d8;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.booking-section {
    padding: 100px 20px;
    background: #ffffff;
}

.booking-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.booking-info {
    flex: 1;
}

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

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

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #444444;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
}

.booking-form-container {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.form-notice {
    background: #fff3cd;
    color: #856404;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
    display: none;
}

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

.form-notice.success {
    background: #d4edda;
    color: #155724;
}

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #357abd;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background: #f0f0f0;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.8;
    color: #666666;
    text-align: center;
}

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

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

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

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

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

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

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

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

.footer-col ul li a:hover {
    color: #4a90e2;
}

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

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

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

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

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

    .main-nav {
        gap: 15px;
    }
}

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

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

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}