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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    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: 15px;
}

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

.logo:hover {
    color: #2c5282;
}

.ad-notice {
    font-size: 11px;
    color: #718096;
    padding: 4px 8px;
    border: 1px solid #cbd5e0;
    border-radius: 3px;
    background-color: #f7fafc;
}

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

.main-nav a {
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #e2e8f0;
    color: #2d3748;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-light {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #1a365d;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: #f7fafc;
    transform: translateY(-2px);
}

.btn-select {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2b6cb0;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn-select:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.3);
}

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

.intro-section h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-section p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-split {
    padding: 0;
}

.service-card-alt {
    display: flex;
    min-height: 500px;
}

.service-card-alt.reverse {
    flex-direction: row-reverse;
}

.service-content-left,
.service-content-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content-left h3,
.service-content-right h3 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-content-left p,
.service-content-right p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-img-right,
.service-img-left {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img-right img,
.service-img-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-box {
    font-size: 24px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 25px;
    padding: 15px 20px;
    background-color: #edf2f7;
    border-left: 4px solid #1a365d;
    display: inline-block;
}

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

.form-section h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.form-section > div > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 40px;
    font-size: 17px;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2b6cb0;
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
}

.selected-service-display {
    background-color: #edf2f7;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-size: 16px;
    color: #2d3748;
}

.selected-service-display strong {
    color: #1a365d;
}

.trust-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.trust-section h2 {
    font-size: 36px;
    color: #1a202c;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

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

.trust-item h4 {
    font-size: 22px;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 700;
}

.trust-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.main-footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 60px 0 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e0;
}

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

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

.footer-col ul li a {
    color: #cbd5e0;
    transition: color 0.3s ease;
    font-size: 15px;
}

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

.footer-disclaimer {
    border-top: 1px solid #4a5568;
    padding-top: 30px;
    margin-bottom: 30px;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #38a169;
}

.btn-reject {
    background-color: #4a5568;
    color: #ffffff;
}

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

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.about-split {
    display: flex;
    padding: 80px 0;
}

.about-content-left {
    flex: 1.2;
    padding: 40px 60px 40px 0;
}

.about-content-left h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-content-left p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-img-right {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.team-section p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.process-split {
    display: flex;
    padding: 80px 0;
    background-color: #f7fafc;
}

.process-img-left {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.process-content-right {
    flex: 1.2;
    padding: 40px 0 40px 60px;
}

.process-content-right h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 25px;
    font-weight: 700;
}

.process-content-right p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-detailed {
    padding: 0;
}

.service-detail-card {
    display: flex;
    min-height: 550px;
    margin-bottom: 0;
}

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

.service-detail-left,
.service-detail-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.service-detail-card:nth-child(even) .service-detail-left,
.service-detail-card:nth-child(even) .service-detail-right {
    background-color: #f7fafc;
}

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

.service-detail-left h2,
.service-detail-right h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-left p,
.service-detail-right p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-features li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
    list-style: disc;
}

.service-pricing {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #edf2f7;
    border-left: 4px solid #1a365d;
    border-radius: 4px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 8px;
    font-weight: 600;
}

.price-amount {
    display: block;
    font-size: 26px;
    color: #1a365d;
    font-weight: 700;
}

.contact-split {
    display: flex;
    padding: 80px 0;
}

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

.contact-info-left h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

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

.email-display {
    color: #2b6cb0;
    font-weight: 600;
}

.contact-map-right {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

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

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

.info-section h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 25px;
    font-weight: 700;
}

.info-section p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.info-list {
    margin: 25px 0;
    padding-left: 25px;
}

.info-list li {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 12px;
    list-style: disc;
    line-height: 1.7;
}

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

.faq-section h2 {
    font-size: 36px;
    color: #1a202c;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-content > p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 30px;
}

.thanks-details {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

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

.next-steps {
    padding: 80px 0;
    background-color: #f7fafc;
}

.next-steps h2 {
    font-size: 36px;
    color: #1a202c;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.step-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.step-card h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.legal-page h2 {
    font-size: 28px;
    color: #1a365d;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    color: #2d3748;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 12px;
    list-style: disc;
    line-height: 1.7;
}

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

.cookie-table thead {
    background-color: #f7fafc;
}

.cookie-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    color: #2d3748;
    border-bottom: 2px solid #cbd5e0;
}

.cookie-table td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

@media (max-width: 768px) {
    .hero-split,
    .service-card-alt,
    .about-split,
    .process-split,
    .service-detail-card,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-left,
    .service-content-left,
    .service-content-right,
    .about-content-left,
    .process-content-right,
    .service-detail-left,
    .service-detail-right,
    .contact-info-left {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-right,
    .service-img-right,
    .service-img-left,
    .about-img-right,
    .process-img-left,
    .contact-map-right {
        min-height: 300px;
    }

    .main-nav {
        flex-basis: 100%;
        gap: 20px;
    }

    .trust-grid,
    .values-grid,
    .faq-grid,
    .steps-grid {
        flex-direction: column;
    }

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

    .cookie-actions {
        justify-content: center;
    }
}