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

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

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

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c5f8d;
}

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

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

.nav-links a:hover {
    color: #2c5f8d;
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #2c5f8d;
}

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

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

.hero-text p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #e8eef5;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fff;
    color: #2c5f8d;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.intro-split {
    display: flex;
    min-height: 500px;
}

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

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

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

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f8d;
}

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

.services-section {
    padding: 100px 20px;
    background-color: #fff;
}

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

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

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

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

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    flex: 1 1 calc(50% - 30px);
    max-width: 580px;
    min-width: 320px;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background-color: #e0e4e8;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f8d;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #2c5f8d;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px 30px;
    background-color: #2c5f8d;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.benefits-split {
    display: flex;
    min-height: 550px;
    background-color: #f5f7fa;
}

.benefits-content {
    flex: 1;
    padding: 80px 60px;
}

.benefits-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c5f8d;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.benefit-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.benefits-image {
    flex: 1;
    background-color: #ddd;
}

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

.contact-form-section {
    padding: 100px 20px;
    background-color: #fff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c5f8d;
    text-align: center;
}

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

.contact-form {
    background-color: #f5f7fa;
    padding: 50px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

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

.disclaimer-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c5f8d;
    color: #fff;
    padding: 60px 20px 20px;
}

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #e8eef5;
}

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

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

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

.footer-col ul li a:hover {
    color: #fff;
}

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

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

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

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

.cookie-content a {
    color: #2c5f8d;
}

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

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

.btn-accept {
    background-color: #2c5f8d;
    color: #fff;
}

.btn-reject {
    background-color: #e0e0e0;
    color: #333;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.85;
}

.page-hero {
    background: linear-gradient(135deg, #2c5f8d 0%, #4a7ba7 100%);
    padding: 100px 20px 80px;
    text-align: center;
}

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

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

.about-split {
    display: flex;
    min-height: 500px;
}

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

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

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

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f8d;
}

.about-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.values-section {
    padding: 100px 20px;
    background-color: #fff;
    text-align: center;
}

.values-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c5f8d;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px 30px;
    background-color: #f5f7fa;
    border-radius: 8px;
}

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

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

.team-split {
    display: flex;
    min-height: 500px;
    background-color: #f5f7fa;
}

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

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

.team-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f8d;
}

.team-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

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

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

.process-section {
    padding: 100px 20px;
    background-color: #fff;
}

.process-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c5f8d;
    text-align: center;
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f8d;
    min-width: 60px;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.process-step p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

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

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

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

.service-detail-content h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #333;
}

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

.service-detail-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

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

.service-pricing-box {
    margin-top: 30px;
    padding: 25px;
    background-color: #f5f7fa;
    border-radius: 5px;
}

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #2c5f8d;
    margin-bottom: 20px;
}

.cta-section {
    padding: 100px 20px;
    background-color: #f5f7fa;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c5f8d;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background-color: #2c5f8d;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #234a6d;
}

.contact-split {
    display: flex;
    min-height: 550px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background-color: #f5f7fa;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c5f8d;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.info-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

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

.contact-map img {
    width: 100%;
    height: 100%;
    display: block;
}

.location-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f8d;
}

.location-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f5f7fa;
    min-height: 600px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #2c5f8d;
    color: #fff;
    font-size: 50px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
}

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

.thanks-content > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.service-confirmation {
    margin: 30px 0;
    padding: 20px;
    background-color: #e8f4f8;
    border-radius: 5px;
}

.service-confirmation p {
    font-size: 17px;
    color: #2c5f8d;
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c5f8d;
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-num {
    min-width: 45px;
    height: 45px;
    background-color: #2c5f8d;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: opacity 0.3s;
}

.btn-primary {
    background-color: #2c5f8d;
    color: #fff;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #333;
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.85;
}

.legal-page {
    padding: 80px 20px;
    background-color: #fff;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c5f8d;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c5f8d;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #333;
}

.legal-content h4 {
    font-size: 18px;
    margin: 25px 0 10px;
    color: #333;
}

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

.legal-content ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table thead {
    background-color: #f5f7fa;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    font-weight: 600;
    color: #2c5f8d;
}

.cookie-table td {
    font-size: 15px;
    color: #555;
}

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

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

    .hero-text h1,
    .page-hero-content h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .section-header h2,
    .values-section h2,
    .process-section h2,
    .cta-section h2 {
        font-size: 32px;
    }

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

    .hero-content,
    .intro-content,
    .benefits-content,
    .about-content,
    .team-content,
    .contact-info,
    .service-detail-content {
        padding: 50px 30px;
    }

    .contact-form {
        padding: 30px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
