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

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

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c5282;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 30px;
}

.nav-right a {
    color: #4a5568;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #2c5282;
}

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

.hero-content {
    flex: 1;
    padding: 80px 5% 80px 8%;
    background-color: #f7fafc;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a365d;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 35px;
    max-width: 540px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c5282;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

.cta-secondary:hover {
    background-color: #2c5282;
    color: #ffffff;
}

.intro-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

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

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

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

.intro-content {
    flex: 1;
    padding: 60px 8%;
}

.intro-content h2 {
    font-size: 38px;
    color: #1a365d;
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 18px;
}

.services-preview {
    padding: 100px 5%;
    background-color: #ffffff;
}

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

.section-header h2 {
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #718096;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 0 1 340px;
    background-color: #f7fafc;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    color: #1a365d;
    padding: 25px 25px 10px 25px;
}

.service-card p {
    font-size: 15px;
    color: #4a5568;
    padding: 0 25px 20px 25px;
}

.service-card .price {
    display: block;
    font-size: 26px;
    font-weight: bold;
    color: #2c5282;
    padding: 0 25px 30px 25px;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

.trust-split {
    display: flex;
    align-items: center;
    background-color: #edf2f7;
    padding: 80px 0;
}

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

.trust-content {
    flex: 1;
    padding: 60px 8%;
}

.trust-content h2 {
    font-size: 38px;
    color: #1a365d;
    margin-bottom: 25px;
}

.trust-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 40px;
}

.trust-points {
    display: flex;
    gap: 40px;
}

.point {
    display: flex;
    flex-direction: column;
}

.point .number {
    font-size: 42px;
    font-weight: bold;
    color: #2c5282;
    margin-bottom: 8px;
}

.point .label {
    font-size: 14px;
    color: #718096;
}

.trust-image {
    flex: 1;
    background-color: #cbd5e0;
}

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

.testimonials-section {
    padding: 100px 5%;
    background-color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 60px;
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #f7fafc;
    padding: 35px;
    border-left: 4px solid #2c5282;
    border-radius: 4px;
}

.testimonial p {
    font-size: 16px;
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial .author {
    font-size: 14px;
    color: #718096;
    font-style: normal;
}

.form-section {
    padding: 100px 5%;
    background-color: #edf2f7;
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    color: #1a365d;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px;
    background-color: #2c5282;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.info-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.info-image {
    flex: 1;
    background-color: #e6f2ff;
}

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

.info-content {
    flex: 1;
    padding: 60px 8%;
}

.info-content h2 {
    font-size: 38px;
    color: #1a365d;
    margin-bottom: 25px;
}

.info-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 18px;
}

.footer {
    background-color: #1a365d;
    color: #ffffff;
    padding: 60px 5% 20px 5%;
}

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

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

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

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

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    background-color: #152a4d;
    padding: 30px;
    margin: 40px 0 30px 0;
    border-radius: 6px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #cbd5e0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    font-size: 14px;
    color: #cbd5e0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #2c5282;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1a365d;
}

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2d3748;
}

.page-hero {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    padding: 100px 5%;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 20px;
    color: #cbd5e0;
}

.about-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.about-content {
    flex: 1;
    padding: 60px 8%;
}

.about-content h2 {
    font-size: 38px;
    color: #1a365d;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 18px;
}

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

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

.values-section {
    padding: 100px 5%;
    background-color: #f7fafc;
}

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.value-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.team-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

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

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

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

.team-content {
    flex: 1;
    padding: 60px 8%;
}

.team-content h2 {
    font-size: 38px;
    color: #1a365d;
    margin-bottom: 25px;
}

.team-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 18px;
}

.mission-section {
    padding: 100px 5%;
    background-color: #edf2f7;
}

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

.mission-content h2 {
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 30px;
}

.mission-content p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.cta-about {
    padding: 100px 5%;
    background-color: #ffffff;
    text-align: center;
}

.cta-about h2 {
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 18px;
    color: #718096;
    margin-bottom: 35px;
}

.services-detailed {
    padding: 60px 5% 80px 5%;
}

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

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

.service-detail-content {
    flex: 1;
    padding: 0 3%;
}

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

.service-detail-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    font-size: 15px;
    color: #2d3748;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: bold;
}

.service-price-box {
    background-color: #f7fafc;
    padding: 20px 25px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    color: #4a5568;
}

.price-value {
    font-size: 32px;
    font-weight: bold;
    color: #2c5282;
}

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

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

.cta-services {
    padding: 100px 5%;
    background-color: #edf2f7;
    text-align: center;
}

.cta-services h2 {
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 20px;
}

.cta-services p {
    font-size: 18px;
    color: #718096;
    margin-bottom: 35px;
}

.contact-split {
    display: flex;
    align-items: flex-start;
    padding: 80px 5%;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    color: #1a365d;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

.contact-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background-color: #e6f2ff;
}

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

.contact-cta {
    padding: 100px 5%;
    background-color: #f7fafc;
    text-align: center;
}

.contact-cta h2 {
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 18px;
    color: #718096;
    margin-bottom: 35px;
}

.thanks-section {
    padding: 120px 5%;
    background-color: #f7fafc;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.thanks-content h1 {
    font-size: 38px;
    color: #1a365d;
    margin-bottom: 20px;
}

.thanks-content > p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 35px;
}

.thanks-service {
    background-color: #edf2f7;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 35px;
}

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

.thanks-next {
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next h2 {
    font-size: 24px;
    color: #2c5282;
    margin-bottom: 20px;
}

.thanks-next ol {
    padding-left: 25px;
}

.thanks-next ol li {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 5%;
}

.legal-page h1 {
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    color: #2d3748;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.legal-page ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-page a {
    color: #2c5282;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1a365d;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .about-split,
    .team-split,
    .info-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .trust-split.reverse,
    .team-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

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

    .nav-right {
        gap: 15px;
        flex-wrap: wrap;
    }

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

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

    .trust-points {
        flex-direction: column;
        gap: 25px;
    }

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