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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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: 250px;
    margin: 0;
}

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

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

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

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

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

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}

.nav-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 10px;
    background-color: #f8f9fa;
    border-radius: 3px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-text-side {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-side h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-text-side p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
}

.hero-image-side {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #34495e;
}

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

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

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

.intro-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.intro-left {
    flex: 1;
    background-color: #ecf0f1;
}

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

.intro-right {
    flex: 1;
}

.intro-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.services-preview {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-card h3 {
    padding: 20px 25px 10px;
    font-size: 22px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 25px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    padding: 0 25px 15px;
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
}

.btn-select-service {
    margin: 0 25px 25px;
    padding: 12px 25px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-select-service:hover {
    background-color: #1a252f;
}

.process-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.process-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.process-text {
    flex: 1;
}

.process-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

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

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

.form-section {
    padding: 100px 40px;
    background-color: #2c3e50;
    color: #ffffff;
}

.form-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #ffffff;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.booking-form textarea {
    resize: vertical;
    min-height: 120px;
}

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

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

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e74c3c;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
}

.page-hero {
    padding: 100px 40px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-hero p {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 40px;
    background-color: #ffffff;
}

.story-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.story-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.methodology-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.method-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.method-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.method-content {
    flex: 1;
}

.method-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.values-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #e74c3c;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

.team-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.team-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

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

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.detail-content {
    flex: 1;
}

.detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #e74c3c;
    margin: 25px 0;
}

.detail-image {
    flex: 1;
    background-color: #ecf0f1;
}

.detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px;
}

.contact-content {
    padding: 60px 40px;
    background-color: #ffffff;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

.info-block h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.contact-image {
    flex: 1;
    background-color: #ecf0f1;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px;
}

.location-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.location-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-hero {
    min-height: 500px;
    display: flex;
    background-color: #f8f9fa;
}

.thanks-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.service-confirmation {
    background-color: #ffffff;
    padding: 20px;
    border-left: 4px solid #e74c3c;
    margin: 20px 0;
    border-radius: 4px;
}

.service-confirmation p {
    margin: 0;
    color: #2c3e50;
}

.thanks-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 15px 0 15px 30px;
}

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

.legal-page a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-page a:hover {
    color: #c0392b;
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-content-split,
    .process-split,
    .story-split,
    .method-split,
    .team-split,
    .contact-split,
    .thanks-hero,
    .service-detail {
        flex-direction: column;
    }

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

    .hero-text-side,
    .hero-image-side {
        min-height: 400px;
    }

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

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
    }

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

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

@media (max-width: 600px) {
    .hero-text-side {
        padding: 40px 30px;
    }

    .hero-text-side h1 {
        font-size: 32px;
    }

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

    .services-preview h2,
    .values-section h2 {
        font-size: 32px;
    }
}