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

.ad-disclosure {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
}

.main-nav {
    background-color: #1a1a2e;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a2e;
    font-weight: 800;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #4a5568;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background-color: #e0e7ff;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ff6b6b;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

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

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

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

.content-half {
    flex: 1;
}

.content-half img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.content-half h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a2e;
    font-weight: 700;
}

.content-half p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.benefits-grid {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.benefits-grid h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a2e;
    font-weight: 700;
}

.benefit-cards {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e0e7ff;
}

.benefit-card h3 {
    font-size: 24px;
    margin: 24px 24px 16px;
    color: #1a1a2e;
    font-weight: 600;
}

.benefit-card p {
    font-size: 16px;
    margin: 0 24px 24px;
    color: #4a5568;
    line-height: 1.7;
}

.services-preview {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a2e;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #6c757d;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    display: flex;
    background-color: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    border-color: #ff6b6b;
    box-shadow: 0 6px 24px rgba(255, 107, 107, 0.15);
}

.service-left {
    flex: 1;
    padding: 32px;
}

.service-left h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a2e;
    font-weight: 600;
}

.service-left > p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #4a5568;
    font-size: 15px;
}

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

.service-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    background-color: #f8f9fa;
    min-width: 280px;
}

.price-tag {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 14px 32px;
    background-color: #1a1a2e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.select-service-btn:active {
    transform: translateY(0);
}

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

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a2e;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    color: #6c757d;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 16px 40px;
    background-color: #ff6b6b;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 16px;
}

.submit-btn:hover {
    background-color: #e64a4a;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.trust-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.testimonial-quote {
    font-style: italic;
    font-size: 19px;
    color: #2c3e50;
    margin: 32px 0 16px;
    padding-left: 20px;
    border-left: 4px solid #ff6b6b;
}

.testimonial-author {
    font-weight: 600;
    color: #6c757d;
    padding-left: 20px;
}

.site-footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 80px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e0;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #cbd5e0;
    margin-bottom: 16px;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #a0aec0;
    max-width: 900px;
    margin: 16px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 24px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-btn.accept {
    background-color: #ff6b6b;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #e64a4a;
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background-color: #4a5568;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #2d3748;
    transform: translateY(-2px);
}

.cookie-link {
    color: #cbd5e0;
    font-size: 14px;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #ffffff;
}

.page-hero {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 100px 40px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 20px;
    color: #cbd5e0;
}

.values-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a2e;
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a2e;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

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

.process-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a2e;
    font-weight: 700;
}

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

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

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #ff6b6b;
    min-width: 100px;
}

.process-step h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #1a1a2e;
    font-weight: 600;
}

.process-step p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.team-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.team-content {
    max-width: 900px;
    margin: 0 auto;
}

.team-content h2 {
    font-size: 40px;
    margin-bottom: 32px;
    color: #1a1a2e;
    font-weight: 700;
}

.team-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #4a5568;
    line-height: 1.8;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-full {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background-color: #f8f9fa;
}

.service-card-header h3 {
    font-size: 30px;
    color: #1a1a2e;
    font-weight: 600;
}

.service-card-price {
    font-size: 36px;
    font-weight: 700;
    color: #ff6b6b;
}

.service-card-body {
    padding: 40px;
}

.service-card-body p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #4a5568;
    line-height: 1.7;
}

.service-card-body ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-card-body ul li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    color: #2c3e50;
    font-size: 16px;
}

.service-card-body ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: 700;
    font-size: 18px;
}

.contact-info-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 600;
}

.contact-info-block p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-info-block .email-display {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
}

.hours-table {
    margin-top: 16px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: #2c3e50;
}

.hours-time {
    color: #6c757d;
}

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

.legal-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #1a1a2e;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: #1a1a2e;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #4a5568;
    line-height: 1.7;
}

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a2e;
    font-weight: 700;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-container .selected-service {
    font-size: 20px;
    font-weight: 600;
    color: #ff6b6b;
    margin: 32px 0;
}

.thanks-container a {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 40px;
    background-color: #1a1a2e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.thanks-container a:hover {
    background-color: #ff6b6b;
}

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .benefit-cards {
        flex-direction: column;
    }

    .service-item {
        flex-direction: column;
    }

    .service-right {
        min-width: auto;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .process-step {
        flex-direction: column;
    }

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

    .service-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}