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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

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

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

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

.header {
    background: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: #4a9eff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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;
    margin: 0;
    font-size: 14px;
}

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

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

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

.btn-accept:hover {
    background: #3385e6;
}

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

.btn-reject:hover {
    border-color: #999;
    background: rgba(255, 255, 255, 0.05);
}

.hero {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #2c3e50;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(44, 62, 80, 0.75) 100%);
    display: flex;
    align-items: center;
}

.hero-overlay .container {
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 700px;
}

.hero-overlay p {
    font-size: 19px;
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #4a9eff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #3385e6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 158, 255, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #4a9eff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid #4a9eff;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #4a9eff;
    color: #ffffff;
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.intro-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.services-preview {
    padding: 100px 0;
    background: #ffffff;
}

.section-header-left {
    margin-bottom: 60px;
}

.section-header-left h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-left p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
}

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

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

.service-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e0e0e0;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: #4a9eff;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-select-service:hover {
    background: #333;
}

.btn-select-service.selected {
    background: #4a9eff;
}

.booking-section {
    padding: 80px 0;
    background: #f0f4f8;
}

.booking-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.booking-header {
    margin-bottom: 40px;
}

.booking-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.selected-service-text {
    font-size: 16px;
    color: #666;
}

.selected-service-text.active {
    color: #4a9eff;
    font-weight: 600;
}

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

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 240px;
    display: flex;
    flex-direction: column;
}

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

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

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

.btn-submit {
    padding: 16px;
    background: #4a9eff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit:hover:not(:disabled) {
    background: #3385e6;
}

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

.trust-section {
    padding: 100px 0;
    background: #ffffff;
}

.trust-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.trust-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.why-choose {
    padding: 80px 0;
    background: #1a1a1a;
    color: #ffffff;
}

.why-choose h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 60px;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.why-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
}

.why-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #4a9eff;
}

.why-item p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.cta-full {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: #ffffff;
    text-align: center;
}

.cta-full h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-full p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
}

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #4a9eff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    text-align: center;
}

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

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.about-intro {
    padding: 80px 0;
    background: #ffffff;
}

.about-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.about-image-wrapper {
    text-align: center;
}

.about-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.about-values {
    padding: 100px 0;
    background: #ffffff;
}

.about-values h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

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

.value-block {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
}

.value-block h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.value-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.about-process {
    padding: 80px 0;
    background: #f0f4f8;
}

.about-process h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.about-process p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-commitment {
    padding: 100px 0;
    background: #1a1a1a;
    color: #ffffff;
}

.commitment-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commitment-wrapper h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 28px;
}

.commitment-wrapper p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-about {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-about p {
    font-size: 17px;
    color: #666;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-detail {
    padding: 80px 0;
    background: #ffffff;
}

.service-detail-item {
    display: flex;
    gap: 48px;
    margin-bottom: 80px;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-detail-content {
    flex: 1 1 500px;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-detail-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: #333;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 16px;
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.service-detail-image {
    flex: 1 1 400px;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e0e0e0;
    border-radius: 8px;
}

.service-price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 24px;
    padding: 20px;
    background: #f0f4f8;
    border-radius: 6px;
}

.price-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: #4a9eff;
}

.services-note {
    padding: 60px 0;
    background: #f8f9fa;
}

.services-note h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.services-note p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 16px;
}

.services-cta {
    padding: 80px 0;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.services-cta p {
    font-size: 17px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info {
    padding: 80px 0;
    background: #ffffff;
}

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

.contact-block {
    flex: 1 1 300px;
}

.contact-block h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.contact-note {
    margin-top: 12px;
    font-size: 14px;
    color: #999;
}

.contact-details {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-details h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-details p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 16px;
}

.contact-directions {
    padding: 80px 0;
    background: #ffffff;
}

.contact-directions h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.directions-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.directions-text {
    flex: 1 1 400px;
}

.directions-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 16px;
}

.directions-image {
    flex: 1 1 400px;
}

.directions-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.contact-expectations {
    padding: 80px 0;
    background: #f0f4f8;
}

.contact-expectations h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-expectations p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 16px;
}

.contact-cta {
    padding: 80px 0;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-cta p {
    font-size: 17px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.thanks-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #4a9eff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
}

.thanks-content h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 32px;
}

.thanks-details {
    text-align: left;
    margin-bottom: 32px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 6px;
}

.thanks-details h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-details p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 12px;
}

.service-booked {
    font-size: 16px;
    padding: 12px 16px;
    background: #e8f4ff;
    border-left: 4px solid #4a9eff;
    margin-bottom: 20px;
    border-radius: 4px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.thanks-note {
    text-align: left;
    padding: 20px;
    background: #fffbf0;
    border-radius: 6px;
    border-left: 4px solid #ffa500;
}

.thanks-note h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.thanks-note p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.legal-content {
    padding: 80px 0;
    background: #ffffff;
}

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

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 28px 0 16px;
    color: #333;
}

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

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

    .nav {
        gap: 16px;
        font-size: 14px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .why-item {
        flex: 1 1 100%;
    }

    .value-block {
        flex: 1 1 100%;
    }

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

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

    .booking-wrapper {
        padding: 32px 20px;
    }

    .form-row {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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