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

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

.main-nav {
    background: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.hero-section {
    height: 600px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1487754180451-c456f719a1fc?w=1400&q=80');
    background-size: cover;
    background-position: center;
    background-color: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 0 24px;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

.cta-primary:hover {
    background: #e55a2b;
}

.intro-section {
    padding: 100px 24px;
    background: #f8f9fa;
}

.intro-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

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

.intro-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

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

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

.services-highlight {
    padding: 100px 24px;
    background: #fff;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

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

.section-header-centered p {
    font-size: 18px;
    color: #666;
}

.services-stack {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-large {
    display: flex;
    gap: 60px;
    align-items: center;
    background: #fff;
}

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

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

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 32px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

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

.booking-section {
    padding: 100px 24px;
    background: #f8f9fa;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-intro {
    text-align: center;
    margin-bottom: 48px;
}

.booking-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.booking-intro p {
    font-size: 17px;
    color: #666;
}

.booking-form {
    background: #fff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.form-group {
    margin-bottom: 24px;
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    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: #ff6b35;
}

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

.btn-submit:hover {
    background: #e55a2b;
}

.trust-section {
    padding: 80px 24px;
    background: #1a1a1a;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    gap: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #fff;
    opacity: 0.9;
}

.main-footer {
    background: #0f0f0f;
    padding: 60px 24px 24px;
    color: #fff;
}

.footer-grid {
    max-width: 1200px;
    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: 14px;
    line-height: 1.6;
    color: #ccc;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    gap: 32px;
}

.cookie-content p {
    color: #fff;
    font-size: 14px;
    flex: 1;
}

.cookie-content a {
    color: #ff6b35;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
}

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

.btn-accept {
    background: #ff6b35;
    color: #fff;
}

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

.btn-reject {
    background: #444;
    color: #fff;
}

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

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

.thanks-content p {
    font-size: 17px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.legal-page {
    padding: 80px 24px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-container h2 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-container p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-container li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #555;
    line-height: 1.7;
}

.contact-page {
    padding: 80px 24px;
}

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

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

.contact-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-header p {
    font-size: 18px;
    color: #666;
}

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

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background: #e0e0e0;
    min-height: 400px;
}

.about-page {
    padding: 80px 24px;
}

.about-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-header h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

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

.about-section {
    margin-bottom: 80px;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

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

.services-page {
    padding: 80px 24px;
}

.services-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header p {
    font-size: 18px;
    color: #666;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    margin-bottom: 80px;
}

.service-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.service-details {
    flex: 1.5;
}

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

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

.service-details ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.service-details li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.service-price-box {
    flex: 1;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
}

.service-price-box .price {
    font-size: 36px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 16px;
}

.service-price-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.service-price-box .select-service {
    width: 100%;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

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

    .intro-grid,
    .service-card-large,
    .contact-grid,
    .about-grid,
    .service-content {
        flex-direction: column;
    }

    .service-card-large.reverse,
    .about-grid.reverse,
    .service-content.reverse {
        flex-direction: column;
    }

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

    .trust-stats {
        flex-direction: column;
        gap: 32px;
    }

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

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