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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

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

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

.hero-section {
    position: relative;
    min-height: 600px;
    background-color: #0a2540;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.92) 0%, rgba(26, 84, 144, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    padding: 40px;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #f39c12;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.intro-block {
    background-color: #f8f9fa;
    padding: 100px 24px 80px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

.intro-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 28px;
    line-height: 1.3;
}

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

.intro-visual {
    flex: 1;
    min-width: 300px;
    background-color: #dee2e6;
}

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

.services-highlight {
    background-color: #ffffff;
    padding: 90px 24px;
}

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

.section-header-center h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-header-center p {
    font-size: 18px;
    color: #6c757d;
}

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

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

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

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

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

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

.select-service-btn {
    padding: 12px 28px;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.trust-section {
    background: linear-gradient(135deg, #0a2540 0%, #1a5490 100%);
    padding: 90px 24px;
    color: #ffffff;
}

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

.trust-content {
    flex: 1.2;
    min-width: 300px;
}

.trust-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.trust-stats {
    flex: 0.8;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.testimonials-section {
    background-color: #f8f9fa;
    padding: 80px 24px;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

.testimonials-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-left: 4px solid #1a5490;
    border-radius: 4px;
}

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

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #1a5490;
}

.cta-section {
    background-color: #ffffff;
    padding: 60px 24px 40px;
}

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

.cta-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #6c757d;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 44px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

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

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

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

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

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

.submit-button {
    padding: 14px 32px;
    background-color: #f39c12;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.disclaimer-section {
    background-color: #fff3cd;
    padding: 40px 24px;
    border-top: 2px solid #ffc107;
    border-bottom: 2px solid #ffc107;
}

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

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

.footer {
    background-color: #0a2540;
    color: #ffffff;
    padding: 60px 24px 20px;
}

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

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

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

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

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

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 200;
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    min-width: 280px;
}

.cookie-content a {
    color: #f39c12;
    text-decoration: underline;
}

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

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

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

.cookie-btn.accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

.cookie-btn.reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.page-hero {
    background: linear-gradient(135deg, #1a5490 0%, #2874a6 100%);
    padding: 80px 24px;
    text-align: center;
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.95;
}

.about-intro {
    background-color: #ffffff;
    padding: 90px 24px;
}

.about-text {
    flex: 1;
    min-width: 320px;
}

.about-visual {
    flex: 1;
    min-width: 320px;
    background-color: #dee2e6;
}

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

.values-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.value-card {
    flex: 1 1 calc(50% - 14px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 6px;
    border-left: 4px solid #1a5490;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 14px;
}

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

.team-section {
    background-color: #ffffff;
    padding: 80px 24px;
}

.team-container {
    max-width: 900px;
    margin: 0 auto;
}

.team-container h2 {
    font-size: 34px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
}

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

.approach-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 90px 24px;
}

.approach-content {
    max-width: 1100px;
    margin: 0 auto;
}

.approach-content h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.step {
    flex: 1;
    min-width: 240px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border-top: 4px solid #1a5490;
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

.cta-secondary {
    background-color: #1a5490;
    padding: 70px 24px;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.service-detail {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 70px;
    padding-bottom: 70px;
    border-bottom: 1px solid #e9ecef;
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.service-detail-image {
    flex: 1;
    min-width: 320px;
    background-color: #dee2e6;
}

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

.service-detail-content {
    flex: 1;
    min-width: 320px;
}

.service-detail-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.service-detail-content ul {
    margin: 24px 0 24px 24px;
}

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

.service-price-large {
    font-size: 28px;
    font-weight: 700;
    color: #1a5490;
    margin: 24px 0 20px;
}

.contact-page-section {
    background-color: #ffffff;
    padding: 80px 24px;
}

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

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 32px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 10px;
}

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

.contact-text-block {
    flex: 1;
    min-width: 300px;
}

.contact-text-block h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
}

.contact-text-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 18px;
}

.contact-text-block a {
    color: #1a5490;
    text-decoration: underline;
}

.location-section {
    background-color: #f8f9fa;
    padding: 70px 24px;
}

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

.location-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
}

.location-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 18px;
}

.thanks-section {
    background-color: #ffffff;
    padding: 100px 24px;
}

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

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

.thanks-container h1 {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 32px;
}

.service-confirmation {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 32px;
}

.service-confirmation p {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.thanks-info {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 20px;
}

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

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

.thanks-button {
    padding: 14px 32px;
    background-color: #1a5490;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.thanks-button:hover {
    background-color: #143d6f;
    transform: translateY(-2px);
}

.thanks-button-secondary {
    padding: 14px 32px;
    background-color: #6c757d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.thanks-button-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

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

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

.legal-container h1 {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.legal-update {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a5490;
    margin-top: 28px;
    margin-bottom: 16px;
}

.legal-container p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 18px;
}

.legal-container ul {
    margin: 20px 0 20px 32px;
}

.legal-container ul li {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 12px;
}

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

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

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

    .intro-text h2,
    .section-header-center h2,
    .testimonials-section h2,
    .values-section h2,
    .approach-content h2 {
        font-size: 28px;
    }

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

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

    .step {
        flex: 1 1 100%;
    }

    .service-detail {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        gap: 20px;
    }

    .cookie-content {
        flex-direction: column;
    }
}