* {
    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;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a5f7a;
}

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

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

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

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #1a5f7a;
    color: #ffffff;
}

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

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background-color: #e9ecef;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #1a5f7a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 40px;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.intro-image,
.values-image {
    flex: 1;
    background-color: #e9ecef;
}

.intro-image img,
.values-image img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-text,
.values-text {
    flex: 1;
}

.intro-text h2,
.values-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a5f7a;
    font-weight: 700;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #495057;
}

.value-item {
    margin-bottom: 32px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #6c757d;
}

.services-overview {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

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

.section-header-centered h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a5f7a;
    font-weight: 700;
}

.section-header-centered p {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.7;
}

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

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

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

.service-card img {
    width: 100%;
    height: 220px;
    display: block;
    background-color: #e9ecef;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #2c3e50;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: #6c757d;
    margin: 0 24px 16px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #1a5f7a;
    margin: 16px 24px;
}

.service-card .select-service {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-card .select-service:hover {
    background-color: #145270;
}

.service-card .select-service.selected {
    background-color: #28a745;
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a5f7a;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 24px;
}

.selected-service-display {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-top: 24px;
}

.selected-service-display strong {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
}

#selectedServiceName {
    color: #1a5f7a;
    font-size: 18px;
    font-weight: 600;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5f7a;
}

.trust-section {
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 80px 40px;
}

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

.trust-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
    font-weight: 700;
}

.trust-content > p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 60px;
    opacity: 0.95;
}

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

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
}

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

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

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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: 40px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

.cookie-accept {
    background-color: #28a745;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

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

@media (max-width: 768px) {
    .hero-split,
    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

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

    .nav-container {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
}
