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

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

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

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

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

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

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

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

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.hero-content {
    padding: 60px 30px;
    background: linear-gradient(135deg, #1a5490 0%, #2c6bb3 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 600px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 550px;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    min-height: 400px;
}

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

.cta-primary {
    background-color: #ffffff;
    color: #1a5490;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    display: inline-block;
    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);
}

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

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

.content-narrow h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a5490;
}

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

.split-reverse {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.split-image {
    flex: 1;
    min-height: 400px;
}

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

.split-content {
    flex: 1;
    padding: 60px 30px;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a5490;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #1a5490;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 15px;
}

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

.select-service {
    background-color: #1a5490;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 80px 30px;
    background-color: #e9ecef;
}

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

.container-wide h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a5490;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: #495057;
    margin-bottom: 15px;
}

.author {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
}

.process-split {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.process-content {
    flex: 1;
    padding: 60px 30px;
    background-color: #f8f9fa;
}

.process-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a5490;
}

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

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

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #1a5490;
    min-width: 60px;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-text p {
    font-size: 15px;
    color: #6c757d;
}

.process-visual {
    flex: 1;
    min-height: 400px;
}

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

.form-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, #2c6bb3 0%, #1a5490 100%);
}

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

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

.form-container > p {
    font-size: 16px;
    color: #e9ecef;
    text-align: center;
    margin-bottom: 40px;
}

#mainForm {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.cta-submit {
    width: 100%;
    background-color: #1a5490;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-submit:hover {
    background-color: #134070;
}

.values-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 30px 30px;
}

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column p {
    color: #adb5bd;
    font-size: 14px;
}

.footer-column a {
    display: block;
    color: #adb5bd;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #495057;
}

.disclaimer p {
    font-size: 13px;
    color: #adb5bd;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cookie-content p {
    font-size: 14px;
    text-align: center;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.cookie-accept {
    background-color: #1a5490;
    color: #ffffff;
}

.cookie-accept:hover {
    opacity: 0.9;
}

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-reject:hover {
    opacity: 0.9;
}

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

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

.page-hero-content p {
    font-size: 18px;
    color: #e9ecef;
}

.services-detailed {
    background-color: #ffffff;
}

.service-detail-split {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e9ecef;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px 30px;
}

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

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

.service-benefits {
    list-style-position: inside;
    margin-bottom: 30px;
}

.service-benefits li {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 10px;
    padding-left: 10px;
}

.service-price-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.price-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
}

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

.service-detail-image {
    flex: 1;
    min-height: 400px;
}

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

.cta-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, #2c6bb3 0%, #1a5490 100%);
    text-align: center;
}

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

.cta-content p {
    font-size: 16px;
    color: #e9ecef;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ffffff;
    color: #1a5490;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.about-intro-split {
    display: flex;
    flex-direction: column;
    padding: 60px 30px;
    background-color: #ffffff;
}

.about-text {
    flex: 1;
    padding-right: 0;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a5490;
}

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

.about-image {
    flex: 1;
    min-height: 400px;
    margin-top: 30px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.philosophy-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.values-split {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.values-image {
    flex: 1;
    min-height: 400px;
}

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

.values-content {
    flex: 1;
    padding: 60px 30px;
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a5490;
}

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

.value-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.value-item p {
    font-size: 15px;
    color: #6c757d;
}

.approach-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a5490;
}

.approach-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #495057;
}

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

.team-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a5490;
}

.team-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #495057;
}

.mission-split {
    display: flex;
    flex-direction: column;
    padding: 60px 30px;
    background-color: #f8f9fa;
}

.mission-content {
    flex: 1;
}

.mission-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a5490;
}

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

.cta-inline {
    background-color: #1a5490;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.cta-inline:hover {
    background-color: #134070;
}

.mission-image {
    flex: 1;
    min-height: 400px;
    margin-top: 30px;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.contact-split {
    display: flex;
    flex-direction: column;
    padding: 60px 30px;
    background-color: #ffffff;
}

.contact-info {
    flex: 1;
    padding-right: 0;
}

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

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.email-display {
    color: #1a5490;
    font-weight: 600;
}

.note {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    margin-top: 8px;
}

.contact-image {
    flex: 1;
    min-height: 400px;
    margin-top: 30px;
}

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

.contact-details {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.location-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

.thanks-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, #1a5490 0%, #2c6bb3 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    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: 32px;
    color: #1a5490;
    margin-bottom: 15px;
}

.thanks-message {
    font-size: 16px;
    color: #495057;
    margin-bottom: 25px;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #2c3e50;
}

.thanks-info {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 30px;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-secondary {
    background-color: transparent;
    color: #1a5490;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid #1a5490;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background-color: #1a5490;
    color: #ffffff;
}

.next-steps {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.next-steps h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a5490;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.step-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a5490;
}

.step-box p {
    font-size: 15px;
    color: #6c757d;
}

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

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a5490;
}

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #495057;
}

.legal-content p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #495057;
    line-height: 1.7;
}

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

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

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

@media (min-width: 768px) {
    .hero-split {
        flex-direction: row;
    }

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

    .hero-visual {
        flex: 1;
    }

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

    .service-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 10px);
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1 1 calc(50% - 13px);
    }

    .process-split {
        flex-direction: row;
    }

    .process-visual {
        flex: 1;
    }

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

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

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

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

    .about-intro-split {
        flex-direction: row;
        align-items: center;
        padding: 80px 60px;
    }

    .about-text {
        flex: 1;
        padding-right: 60px;
    }

    .about-image {
        flex: 1;
        margin-top: 0;
    }

    .values-split {
        flex-direction: row;
    }

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

    .mission-split {
        flex-direction: row;
        align-items: center;
        padding: 80px 60px;
    }

    .mission-content {
        flex: 1;
        padding-right: 60px;
    }

    .mission-image {
        flex: 1;
        margin-top: 0;
    }

    .contact-split {
        flex-direction: row;
        align-items: center;
        padding: 80px 60px;
    }

    .contact-info {
        flex: 1;
        padding-right: 60px;
    }

    .contact-image {
        flex: 1;
        margin-top: 0;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .steps-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-box {
        flex: 1 1 calc(50% - 10px);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        flex-wrap: nowrap;
    }

    .testimonial {
        flex: 1;
    }

    .service-card {
        flex: 1 1 calc(50% - 10px);
    }
}
