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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.header {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #ffd700;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 215, 0, 0.15);
    border-radius: 4px;
}

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

.main-nav a {
    color: #ffffff;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background-color: #f8f9fa;
}

.hero-text-content {
    max-width: 550px;
}

.hero-text-content h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

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

.cta-secondary {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background-color: transparent;
    color: #2c3e50;
    font-weight: 600;
    border: 2px solid #2c3e50;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.intro-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1rem;
}

.image-block {
    overflow: hidden;
    border-radius: 8px;
}

.services-showcase {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-intro p {
    font-size: 1.1rem;
    color: #555555;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 240px;
    overflow: hidden;
}

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

.service-info {
    padding: 1.75rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 1.25rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.25rem;
}

.select-service {
    width: 100%;
    padding: 0.875rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #2980b9;
}

.form-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.form-header p {
    font-size: 1rem;
    color: #555555;
}

.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[type="text"],
.booking-form input[type="email"],
.booking-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.booking-form input[type="text"]:focus,
.booking-form input[type="email"]:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.booking-form input[readonly] {
    background-color: #e5e7eb;
    cursor: not-allowed;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-group a {
    color: #3498db;
    text-decoration: underline;
    cursor: pointer;
}

.checkbox-group a:hover {
    color: #2980b9;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #34495e;
}

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.trust-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.trust-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1rem;
}

.trust-content .cta-secondary {
    margin-top: 1rem;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

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

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #b0b0b0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

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

.footer-bottom {
    text-align: center;
    padding: 2rem 0 1rem;
    margin-top: 2rem;
    border-top: 1px solid #333333;
    color: #888888;
    font-size: 0.85rem;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.btn-reject {
    background-color: #e74c3c;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #c0392b;
}

.about-hero {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.about-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.25rem;
}

.about-section {
    padding: 4rem 0;
}

.about-grid {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.about-text {
    flex: 1.5;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1rem;
}

.about-image-container {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.contact-section {
    padding: 5rem 0;
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

.info-block {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.info-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 0.5rem;
}

.info-block .email-text {
    color: #555555;
    font-weight: 600;
}

.legal-page {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 0.5rem;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

.thanks-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.thanks-content .service-detail {
    background-color: #ffffff;
    padding: 1.25rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    border-left: 4px solid #3498db;
}

.thanks-content .service-detail strong {
    color: #2c3e50;
}

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

    .hero-right {
        min-height: 400px;
    }

    .split-content,
    .split-reverse,
    .about-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }
}

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

    .mobile-menu-toggle {
        display: block;
    }

    .header-container {
        justify-content: space-between;
    }

    .hero-text-content h1 {
        font-size: 2rem;
    }

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

    .services-grid {
        gap: 1.5rem;
    }

    .section-intro h2 {
        font-size: 2rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }

    .container,
    .container-wide {
        padding: 0 1rem;
    }

    .hero-left {
        padding: 3rem 1.5rem;
    }

    .hero-text-content h1 {
        font-size: 1.75rem;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }
}