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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e8ecef;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f7a;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.ad-notice {
    background: #fff3cd;
    color: #856404;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8fafb;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
    color: #2c3e50;
}

.feature-icon {
    font-size: 1.5rem;
}

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

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

.btn-primary {
    display: inline-block;
    background: #1a5f7a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

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

.intro-image {
    flex: 1;
    background: #f0f4f8;
}

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

.intro-content {
    flex: 1;
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.trust-markers {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 2.5rem;
    color: #1a5f7a;
    font-weight: 800;
}

.trust-item span {
    font-size: 0.95rem;
    color: #5a6c7d;
}

.services-overview {
    background: #f8fafb;
    padding: 5rem 2rem;
}

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

.section-header-center h2 {
    font-size: 2.8rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #5a6c7d;
}

.services-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.service-visual {
    flex: 1;
    background: #e8ecef;
}

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

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.8rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-info p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    color: #1a5f7a;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background: #1a5f7a;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #145270;
    transform: translateY(-2px);
}

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

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-benefits p {
    font-size: 1.05rem;
    color: #2c3e50;
}

.form-wrapper {
    flex: 1;
    background: #f8fafb;
    padding: 3rem;
    border-radius: 8px;
}

.selected-service-display {
    background: #e3f2fd;
    color: #1565c0;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e8ecef;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background: #1a5f7a;
    color: #ffffff;
    border: none;
    padding: 1.1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: #145270;
    transform: translateY(-2px);
}

.why-choose-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

.why-content {
    flex: 1;
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8fafb;
}

.why-content h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reason-item h4 {
    font-size: 1.3rem;
    color: #1a5f7a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.reason-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.why-image {
    flex: 1;
    background: #e8ecef;
}

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

.disclaimer-section {
    background: #fff9e6;
    padding: 3rem 2rem;
    border-top: 3px solid #ffc107;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #5a4a00;
    line-height: 1.8;
}

.footer {
    background: #1a2332;
    color: #b8c5d6;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h3,
.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-column p {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

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

.footer-column ul li a {
    color: #b8c5d6;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #2c3e50;
    padding-top: 2rem;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    color: #2c3e50;
    font-size: 0.95rem;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie.accept {
    background: #1a5f7a;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background: #145270;
}

.btn-cookie.reject {
    background: #e8ecef;
    color: #2c3e50;
}

.btn-cookie.reject:hover {
    background: #d4dce4;
}

.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #1a5f7a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-page p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page ul li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.contact-info-split {
    display: flex;
    max-width: 1200px;
    margin: 4rem auto;
    gap: 4rem;
}

.contact-details {
    flex: 1;
    padding: 3rem;
    background: #f8fafb;
    border-radius: 8px;
}

.contact-details h2 {
    font-size: 2rem;
    color: #1a5f7a;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #1a5f7a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-hero {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
}

.about-content {
    flex: 1;
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h1 {
    font-size: 3rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

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

.about-image {
    flex: 1;
    background: #e8ecef;
}

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

.about-values {
    background: #f8fafb;
    padding: 5rem 2rem;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-item {
    display: flex;
    gap: 3rem;
}

.value-item.reverse {
    flex-direction: row-reverse;
}

.value-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-content h3 {
    font-size: 2rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.value-visual {
    flex: 1;
    background: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

.value-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-page-header {
    background: #f8fafb;
    padding: 4rem 2rem;
    text-align: center;
}

.services-page-header h1 {
    font-size: 3rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-page-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

.services-detail-grid {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
}

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

.service-detail-visual {
    flex: 1;
    background: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail-content .price-display {
    font-size: 2.5rem;
    color: #1a5f7a;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
}

.thanks-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.thanks-service-info {
    background: #e3f2fd;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-service-info strong {
    color: #1565c0;
    font-size: 1.2rem;
}

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

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .service-card,
    .form-container-split,
    .why-choose-split,
    .contact-info-split,
    .about-hero,
    .value-item,
    .service-detail-card {
        flex-direction: column;
    }

    .service-card.reverse,
    .intro-split.reverse,
    .value-item.reverse,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

    .intro-content h2,
    .why-content h2,
    .about-content h1 {
        font-size: 2rem;
    }

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

    .trust-markers {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }

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