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

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.navigation {
    background-color: #1a252f;
    padding: 16px 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: #ffffff;
    letter-spacing: -0.5px;
}

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

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

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

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a252f;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background-color: #d5dce0;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2980b9;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #1f6396;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2980b9;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2980b9;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2980b9;
    color: #ffffff;
}

.intro-section {
    display: flex;
    max-width: 1200px;
    margin: 96px auto;
    padding: 0 24px;
    gap: 64px;
    align-items: center;
}

.intro-content-left {
    flex: 1.2;
}

.intro-content-left h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-content-left p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 16px;
}

.intro-image-right {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-grid {
    max-width: 1200px;
    margin: 96px auto;
    padding: 0 24px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 64px;
}

.section-header-center h2 {
    font-size: 40px;
    color: #1a252f;
    margin-bottom: 16px;
}

.section-header-center p {
    font-size: 18px;
    color: #546e7a;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 32px;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.service-card h3 {
    font-size: 24px;
    color: #1a252f;
    margin: 24px 24px 12px;
}

.service-card p {
    font-size: 16px;
    color: #546e7a;
    margin: 0 24px 16px;
}

.service-card .price {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 24px 16px;
}

.service-card button {
    margin: 0 24px 24px;
}

.select-service {
    display: inline-block;
    padding: 12px 28px;
    background-color: #34495e;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2c3e50;
}

.trust-section {
    display: flex;
    background-color: #f8f9fa;
    padding: 96px 0;
}

.trust-image-left {
    flex: 1;
    background-color: #d5dce0;
    overflow: hidden;
}

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

.trust-content-right {
    flex: 1;
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content-right h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 24px;
}

.trust-content-right p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 16px;
}

.trust-content-right .cta-secondary {
    align-self: flex-start;
    margin-top: 16px;
}

.form-section {
    max-width: 800px;
    margin: 96px auto;
    padding: 0 24px;
}

.form-container {
    background-color: #f8f9fa;
    padding: 48px;
    border-radius: 12px;
}

.form-container h2 {
    font-size: 32px;
    color: #1a252f;
    margin-bottom: 12px;
    text-align: center;
}

.form-container > p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 32px;
    text-align: center;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-family: inherit;
    background-color: #ffffff;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: #2980b9;
}

#contactForm button {
    align-self: center;
    margin-top: 8px;
}

.disclaimer-section {
    max-width: 1000px;
    margin: 96px auto;
    padding: 32px 48px;
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
}

.disclaimer-section p {
    font-size: 14px;
    color: #5d4037;
    line-height: 1.8;
}

footer {
    background-color: #1a252f;
    color: #ffffff;
    padding: 64px 0 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column p {
    font-size: 15px;
    color: #b0bec5;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #b0bec5;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 8px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #90a4ae;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    padding: 24px;
    box-shadow: 0 -4px 16px 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;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

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

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

.cookie-buttons button {
    padding: 10px 24px;
    font-size: 14px;
    white-space: nowrap;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 24px;
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-split {
    display: flex;
    max-width: 1200px;
    margin: 96px auto;
    padding: 0 24px;
    gap: 64px;
    align-items: center;
}

.about-content {
    flex: 1.2;
}

.about-content h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 16px;
}

.about-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    display: flex;
    background-color: #f8f9fa;
    padding: 96px 0;
}

.values-image-left {
    flex: 1;
    background-color: #d5dce0;
    overflow: hidden;
}

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

.values-content-right {
    flex: 1;
    padding: 64px 48px;
}

.values-content-right h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 24px;
}

.values-content-right p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
}

.team-section {
    max-width: 1200px;
    margin: 96px auto;
    padding: 0 24px;
}

.team-section h2 {
    font-size: 40px;
    color: #1a252f;
    margin-bottom: 16px;
    text-align: center;
}

.team-section > p {
    font-size: 18px;
    color: #546e7a;
    text-align: center;
    margin-bottom: 64px;
}

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

.team-member {
    flex: 1;
    min-width: 260px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 22px;
    color: #1a252f;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

.cta-about {
    max-width: 800px;
    margin: 96px auto;
    padding: 64px 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.95;
}

.cta-about .cta-primary {
    background-color: #ffffff;
    color: #667eea;
}

.cta-about .cta-primary:hover {
    background-color: #f0f0f0;
}

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

.service-detail-split {
    display: flex;
    gap: 64px;
    align-items: center;
    margin-bottom: 96px;
}

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

.service-detail-content {
    flex: 1.2;
}

.service-detail-content h2 {
    font-size: 32px;
    color: #1a252f;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 16px;
}

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin: 24px 0 16px;
}

.cta-services {
    max-width: 800px;
    margin: 96px auto;
    padding: 64px 48px;
    background-color: #34495e;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.cta-services h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 24px;
}

.contact-content {
    display: flex;
    max-width: 1200px;
    margin: 96px auto;
    padding: 0 24px;
    gap: 64px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 22px;
    color: #1a252f;
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-cta {
    max-width: 800px;
    margin: 96px auto;
    padding: 64px 48px;
    background-color: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 12px;
}

.contact-cta p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 24px;
}

.thanks-section {
    display: flex;
    max-width: 1200px;
    margin: 96px auto;
    padding: 0 24px;
    gap: 64px;
    align-items: center;
}

.thanks-content {
    flex: 1.2;
}

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

.thanks-content p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 16px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.thanks-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

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

.legal-text h2 {
    font-size: 28px;
    color: #1a252f;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-text h3 {
    font-size: 22px;
    color: #34495e;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-text p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-text ul {
    margin: 16px 0 16px 24px;
}

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

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 48px 24px;
    }

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

    .hero-image {
        min-height: 300px;
    }

    .intro-section {
        flex-direction: column;
        margin: 64px auto;
    }

    .services-grid {
        margin: 64px auto;
    }

    .trust-section {
        flex-direction: column;
        padding: 64px 0;
    }

    .trust-content-right {
        padding: 48px 24px;
    }

    .form-section {
        margin: 64px auto;
    }

    .form-container {
        padding: 32px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

    .about-split {
        flex-direction: column;
        margin: 64px auto;
    }

    .values-section {
        flex-direction: column;
        padding: 64px 0;
    }

    .values-content-right {
        padding: 48px 24px;
    }

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

    .service-detail-split,
    .service-detail-split.reverse {
        flex-direction: column;
        margin-bottom: 64px;
    }

    .contact-content {
        flex-direction: column;
        margin: 64px auto;
    }

    .thanks-section {
        flex-direction: column;
        margin: 64px auto;
    }

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