* {
    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.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.header-main {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.nav-main {
    display: flex;
    gap: 25px;
}

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

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

.hero-section {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.88), rgba(44, 62, 80, 0.75));
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #ffffff;
    color: #1a5490;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #495057;
}

.values-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.values-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a5490;
}

.value-item p {
    color: #666;
    line-height: 1.7;
}

.services-section {
    padding: 100px 0;
    background-color: #f1f3f5;
}

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

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: row;
    transition: transform 0.3s ease;
}

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

.service-image {
    width: 40%;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    background-color: #dfe6e9;
}

.service-content {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.service-select {
    align-self: flex-start;
    padding: 12px 28px;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    background-color: #154170;
    transform: translateX(5px);
}

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

.form-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.selected-service-box {
    padding: 20px;
    background-color: #e3f2fd;
    border-left: 4px solid #1a5490;
    margin-bottom: 30px;
    border-radius: 4px;
}

.selected-service-box p {
    margin-bottom: 8px;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 90px 0;
    background-color: #f8f9fa;
}

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
}

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

.trust-item p {
    color: #666;
    line-height: 1.7;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff8e1;
    border-top: 3px solid #ffc107;
}

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

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

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

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

.footer-col h4 {
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #1a5490, #2c3e50);
    color: #ffffff;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

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

.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    width: 45%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #dfe6e9;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-text p {
    margin-bottom: 18px;
    color: #666;
    line-height: 1.8;
}

.process-section {
    padding: 90px 0;
    background-color: #f8f9fa;
}

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

.process-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 220px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #1a5490;
    opacity: 0.2;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

.experience-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.experience-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.experience-section p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.principles-section {
    padding: 90px 0;
    background-color: #e8f4f8;
}

.principles-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.principles-layout {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.principle-item {
    flex: 1;
    min-width: 280px;
}

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

.principle-item p {
    color: #666;
    line-height: 1.7;
}

.cta-section {
    padding: 90px 0;
    background-color: #1a5490;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #1a5490;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

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

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

.service-detail-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.service-detail-image {
    width: 45%;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #dfe6e9;
}

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

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

.service-detail-content p {
    margin-bottom: 18px;
    color: #666;
    line-height: 1.8;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a5490;
    margin: 25px 0 20px;
}

.pricing-note {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.pricing-note h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.pricing-note p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.7;
}

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

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

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

.contact-info-box h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

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

.contact-item p {
    color: #666;
    line-height: 1.7;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #e3f2fd;
    border-left: 4px solid #1a5490;
    border-radius: 4px;
}

.contact-note p {
    color: #666;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    background-color: #dfe6e9;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(26, 84, 144, 0.9);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 5px;
}

.response-time {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.response-time h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.response-time p {
    margin-bottom: 18px;
    color: #666;
    line-height: 1.8;
}

.service-area {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.service-area h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-area p {
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-section {
    padding: 120px 0;
    background-color: #f8f9fa;
}

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

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

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

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.thank-service-box {
    padding: 20px;
    background-color: #e3f2fd;
    border-left: 4px solid #1a5490;
    margin-bottom: 40px;
    border-radius: 4px;
    text-align: left;
}

.thank-service-box p {
    margin-bottom: 8px;
}

.thanks-next {
    margin: 40px 0;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: left;
}

.thanks-next h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-steps {
    list-style-position: inside;
    color: #666;
    line-height: 2;
}

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

.btn-primary {
    padding: 15px 35px;
    background-color: #1a5490;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 15px 35px;
    background-color: #95a5a6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1a5490;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 25px;
    color: #666;
    line-height: 1.8;
}

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

.legal-content a:hover {
    color: #154170;
}

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

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookies-table th {
    background-color: #1a5490;
    color: #ffffff;
    font-weight: 600;
}

.cookies-table td {
    color: #666;
}

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

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

    .service-image {
        width: 100%;
        height: 250px;
    }

    .about-layout,
    .service-detail-layout,
    .service-detail-layout.reverse,
    .contact-layout {
        flex-direction: column;
    }

    .about-image,
    .service-detail-image {
        width: 100%;
    }

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

    .nav-main {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero-section h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}