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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    background-color: #ffffff;
}

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

ul {
    list-style: none;
}

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

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

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f7c;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-main a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-main a:hover {
    color: #2c5f7c;
}

.ad-notice {
    font-size: 12px;
    color: #888;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

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

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

.hero-text {
    max-width: 600px;
}

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

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.hero-right {
    flex: 1;
    background-color: #3a5a6b;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #2c5f7c;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background-color: #234a5f;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #2c5f7c;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid #2c5f7c;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #2c5f7c;
    color: #ffffff;
}

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

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

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f7c;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
}

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

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5f7c;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5f7c;
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f7c;
    margin: 20px 0;
}

.btn-select-service {
    width: 100%;
    padding: 12px;
    background-color: #2c5f7c;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #234a5f;
}

.form-section {
    padding: 80px 0;
}

.form-split {
    display: flex;
    gap: 60px;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f7c;
}

.form-left p {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
}

.selected-service-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #f0f7fa;
    border-left: 4px solid #2c5f7c;
    border-radius: 5px;
}

.selected-service-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c5f7c;
}

.selected-service-info p {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.form-right {
    flex: 1;
}

.booking-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #2c5f7c;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.testimonials-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5f7c;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 16px;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5f7c;
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    color: #b8c1cc;
    line-height: 1.8;
}

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

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

.footer-column ul li a {
    color: #b8c1cc;
    transition: color 0.3s ease;
}

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

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

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

.disclaimer {
    font-size: 12px;
    color: #8a96a3;
    margin-top: 20px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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;
    gap: 20px;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.btn-cookie-accept:hover {
    opacity: 0.9;
}

.btn-cookie-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    opacity: 0.9;
}

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

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

.page-hero p {
    font-size: 18px;
    color: #555;
}

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

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

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5f7c;
}

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

.value-card {
    flex: 1 1 calc(50% - 30px);
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

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

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

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5f7c;
}

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

.team-image-large img {
    width: 100%;
    border-radius: 8px;
}

.team-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
}

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

.cta-section {
    padding: 80px 0;
}

.cta-box {
    text-align: center;
    padding: 60px;
    background-color: #2c5f7c;
    color: #ffffff;
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
}

.services-detailed {
    padding: 80px 0;
}

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

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

.service-detail-left {
    flex: 1;
}

.service-detail-left img {
    width: 100%;
    border-radius: 8px;
}

.service-detail-right {
    flex: 1;
}

.service-detail-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c5f7c;
}

.service-detail-right p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.service-detail-right ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 25px;
}

.service-detail-right ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f7c;
    margin: 25px 0;
}

.custom-service-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.custom-box {
    text-align: center;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.custom-box h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c5f7c;
}

.custom-box p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
}

.contact-section {
    padding: 80px 0;
}

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

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

.contact-info-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f7c;
}

.contact-info-box p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5f7c;
}

.contact-detail p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.contact-map-placeholder {
    flex: 1;
}

.map-box {
    width: 100%;
    height: 400px;
    background-color: #e8e8e8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-box p {
    font-size: 16px;
    color: #888;
}

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

.faq-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5f7c;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 30px);
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5f7c;
}

.faq-item p {
    font-size: 16px;
    color: #555;
}

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

.thanks-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c5f7c;
}

.thanks-box p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.selected-service-thanks {
    margin: 30px 0;
    padding: 20px;
    background-color: #f0f7fa;
    border-radius: 5px;
}

.selected-service-thanks p {
    font-size: 16px;
    color: #2c3e50;
}

.thanks-note {
    font-size: 15px;
    color: #888;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.legal-content {
    padding: 60px 0;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c5f7c;
}

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

.legal-content ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

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

.legal-content a {
    color: #2c5f7c;
    text-decoration: underline;
}

.legal-date {
    font-style: italic;
    color: #888;
    margin-top: 40px;
}

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

    .hamburger {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
    }

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

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

    .service-card {
        flex: 1 1 calc(50% - 30px);
    }

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

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1 1 calc(50% - 40px);
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }

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

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

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 32px;
    }

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

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

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

    .section-title {
        font-size: 28px;
    }
}
