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

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

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

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

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

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

.nav-links a:hover {
    color: #4a9eff;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
}

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

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

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #555;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

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

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

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

.cta-secondary:hover {
    background-color: #475569;
}

.intro-section,
.problem-section {
    padding: 100px 40px;
}

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

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a3a52;
}

.split-text h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2563eb;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.split-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.split-text li {
    margin-bottom: 12px;
    font-size: 17px;
}

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

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

.problem-list {
    list-style: none;
    margin-left: 0;
}

.problem-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.problem-list li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-size: 20px;
}

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

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

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a3a52;
}

.section-header-centered p {
    font-size: 20px;
    color: #555;
}

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

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

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

.service-image {
    width: 100%;
    height: 240px;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a3a52;
}

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

.service-price {
    font-size: 20px;
    font-weight: bold;
    color: #2563eb;
}

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

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
}

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

.trust-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #4a9eff;
}

.trust-item p {
    font-size: 17px;
    line-height: 1.6;
}

.form-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.form-info {
    flex: 1;
}

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

.form-info p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555;
}

.form-benefits {
    list-style: none;
    margin-left: 0;
}

.form-benefits li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 17px;
}

.form-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-size: 22px;
    font-weight: bold;
}

.form-wrapper {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    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: #2563eb;
}

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

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

.main-footer {
    background-color: #1a3a52;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

.footer-section {
    flex: 1;
}

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

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #4a9eff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #334155;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    color: #94a3b8;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3a52;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #16a34a;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #15803d;
}

.btn-reject {
    background-color: #64748b;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #475569;
}

.page-hero {
    background: linear-gradient(135deg, #1a3a52 0%, #2563eb 100%);
    padding: 100px 40px;
    text-align: center;
}

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

.page-hero-content p {
    font-size: 22px;
    color: #cbd5e1;
}

.about-intro,
.values-section {
    padding: 100px 40px;
}

.values-section {
    background-color: #f8f9fa;
}

.values-list {
    list-style: none;
    margin-left: 0;
}

.values-list li {
    margin-bottom: 20px;
    font-size: 17px;
}

.values-list strong {
    color: #2563eb;
}

.approach-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.section-content-centered {
    max-width: 1200px;
    margin: 0 auto;
}

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

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step-item {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
}

.step-number {
    font-size: 48px;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 15px;
}

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

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

.cta-section-about,
.cta-section-services {
    padding: 100px 40px;
    background: linear-gradient(135deg, #1a3a52 0%, #2563eb 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 35px;
}

.service-detail {
    padding: 100px 40px;
}

.service-detail.alt {
    background-color: #f8f9fa;
}

.service-price-box {
    display: inline-block;
    padding: 15px 30px;
    background-color: #2563eb;
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    border-radius: 6px;
    margin-top: 20px;
}

.contact-section {
    padding: 100px 40px;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

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

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

.info-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2563eb;
}

.info-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.email-static {
    color: #333;
    font-weight: 600;
}

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

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

.thanks-section {
    padding: 150px 40px;
    background-color: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a3a52;
}

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

.service-confirmation {
    font-weight: 600;
    color: #2563eb;
    font-size: 18px;
    margin-top: 30px;
}

.next-steps {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a3a52;
}

.next-steps ul {
    list-style: none;
    margin-left: 0;
}

.next-steps li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 18px;
    font-size: 17px;
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 22px;
    font-weight: bold;
}

.legal-page {
    padding: 60px 40px;
    min-height: 60vh;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a3a52;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2563eb;
}

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

.legal-container ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-container li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}

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

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

.cookie-table th {
    background-color: #f1f5f9;
    font-weight: 600;
    color: #1a3a52;
}

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

@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #1a3a52;
        flex-direction: column;
        padding: 20px 40px;
        gap: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .split-text h2,
    .section-header-centered h2,
    .page-hero-content h1 {
        font-size: 32px;
    }

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

    .trust-item {
        flex: 1 1 100%;
    }

    .step-item {
        flex: 1 1 100%;
    }
}
