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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.split-text {
    flex: 1 1 450px;
}

.split-image {
    flex: 1 1 450px;
    background-color: #f5f5f5;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-cookie.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-cookie.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #7f8c8d;
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

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

.main-nav a:hover {
    color: #1a5490;
}

.ad-notice {
    font-size: 12px;
    color: #666666;
    background-color: #f0f0f0;
    padding: 4px 10px;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    background-color: #0a1929;
    margin-bottom: 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
}

.hero-image-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.hero-text {
    color: #ffffff;
    max-width: 700px;
}

.hero-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.btn-primary {
    display: inline-block;
    background-color: #1a5490;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #0d3a6b;
}

.btn-secondary {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #229954;
}

.intro-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.intro-text {
    font-size: 22px;
    line-height: 1.7;
    color: #2c3e50;
    text-align: center;
}

.services-highlight {
    background-color: #ffffff;
    padding: 100px 0;
}

.section-header-offset {
    max-width: 700px;
    margin-bottom: 60px;
}

.section-header-offset h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

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

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-image {
    background-color: #f5f5f5;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.service-price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
}

.philosophy-section {
    background-color: #f0f4f8;
    padding: 90px 0;
}

.cta-form-section {
    background-color: #1a5490;
    padding: 80px 0;
    color: #ffffff;
}

.cta-form-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: #ffffff;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.contact-form .btn-primary {
    width: 100%;
    margin-top: 10px;
}

.disclaimer-section {
    background-color: #fff3cd;
    padding: 50px 0;
}

.disclaimer-text {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
}

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    color: #bdc3c7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid #34495e;
    padding-top: 20px;
}

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

.page-hero {
    background-color: #0a1929;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.services-detail {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.service-detail-content {
    flex: 1 1 450px;
}

.service-detail-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-detail-image {
    flex: 1 1 450px;
    background-color: #f5f5f5;
}

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

.price-box {
    background-color: #f0f4f8;
    padding: 20px;
    border-radius: 6px;
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
}

.price-label {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #1a5490;
}

.cta-services-page {
    background-color: #27ae60;
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
}

.cta-services-page h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-services-page p {
    font-size: 18px;
    margin-bottom: 24px;
}

.about-intro {
    background-color: #ffffff;
    padding: 80px 0;
}

.about-text-image {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 60px;
}

.about-image-left {
    flex: 1 1 450px;
    background-color: #f5f5f5;
}

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

.about-content-right {
    flex: 1 1 450px;
}

.about-content-right h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.values-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.values-section h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a5490;
}

.value-item p {
    font-size: 17px;
    color: #555555;
    line-height: 1.7;
}

.how-we-work {
    background-color: #ffffff;
    padding: 80px 0;
}

.how-we-work h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

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

.process-step {
    flex: 1 1 calc(50% - 20px);
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.expertise-section {
    background-color: #f0f4f8;
    padding: 80px 0;
}

.business-model-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.business-model-section h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

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

.cta-about-page {
    background-color: #1a5490;
    padding: 70px 0;
    text-align: center;
    color: #ffffff;
}

.cta-about-page h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-about-page p {
    font-size: 18px;
    margin-bottom: 24px;
}

.contact-info-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-details {
    flex: 1 1 450px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a5490;
}

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

.contact-image {
    flex: 1 1 450px;
    background-color: #f5f5f5;
}

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

.contact-instructions {
    background-color: #f8f9fa;
    padding: 70px 0;
}

.contact-instructions h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-instructions p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.instructions-list {
    list-style-position: inside;
    margin: 20px 0;
}

.instructions-list li {
    font-size: 17px;
    color: #555555;
    margin-bottom: 10px;
    line-height: 1.7;
}

.alternative-contact {
    background-color: #ffffff;
    padding: 70px 0;
    text-align: center;
}

.alternative-contact h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.alternative-contact p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 24px;
}

.thanks-hero {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-hero h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    color: #555555;
}

.thanks-content {
    background-color: #ffffff;
    padding: 80px 0;
}

.thanks-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

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

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

.step-num {
    width: 45px;
    height: 45px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.thanks-info {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.thanks-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thanks-info p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-navigation {
    background-color: #ffffff;
    padding: 70px 0;
}

.thanks-navigation h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

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

.legal-page {
    background-color: #ffffff;
    padding: 80px 0;
}

.legal-intro {
    font-size: 14px;
    color: #666666;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a5490;
}

.legal-page h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.legal-page ul {
    margin: 16px 0 16px 30px;
}

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

.legal-page a {
    color: #1a5490;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #0d3a6b;
}

@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 17px;
    }

    .hero-image-container img {
        height: 400px;
    }

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

    .section-header-offset h2 {
        font-size: 30px;
    }

    .page-hero h2 {
        font-size: 32px;
    }

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

    .container-split {
        gap: 40px;
    }

    .service-detail-block {
        gap: 40px;
    }

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

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

    .thanks-links {
        flex-direction: column;
        align-items: center;
    }

    .thanks-links .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}
