* {
    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: #333;
    background-color: #fff;
}

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

.ad-notice {
    background-color: #f8f9fa;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f8d;
}

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

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

.nav-links a:hover {
    color: #2c5f8d;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background-color: rgba(44, 95, 141, 0.85);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f8d;
}

.intro-content p {
    font-size: 18px;
    color: #555;
}

.services-grid-section {
    padding: 80px 20px;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 280px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5f8d;
}

.card-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 20px;
}

.select-service-btn {
    background-color: #2c5f8d;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.form-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c5f8d;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}

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

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

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

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

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

.submit-btn {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.why-choose-section {
    padding: 80px 20px;
}

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

.benefits-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.benefit-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    width: calc(50% - 15px);
    min-width: 250px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5f8d;
}

.benefit-card p {
    font-size: 15px;
    color: #555;
}

.cta-final-section {
    padding: 80px 20px;
    background-color: #2c5f8d;
    text-align: center;
    color: #fff;
}

.cta-final-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.cta-button-secondary {
    display: inline-block;
    background-color: #fff;
    color: #2c5f8d;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #28a745;
}

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

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

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

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-bottom: 20px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.cookie-content a {
    color: #2c5f8d;
}

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

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

.cookie-btn.accept {
    background-color: #28a745;
    color: #fff;
}

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

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

.cookie-btn.reject:hover {
    background-color: #5a6268;
}

.page-hero {
    background-color: #2c5f8d;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

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

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

.about-content-section {
    padding: 80px 20px;
}

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

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    background-color: #e9ecef;
}

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

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

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

.value-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: calc(50% - 15px);
    min-width: 250px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5f8d;
}

.value-card p {
    font-size: 15px;
    color: #555;
}

.approach-section {
    padding: 80px 20px;
}

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

.approach-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c5f8d;
}

.approach-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.team-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c5f8d;
}

.team-section > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 16px;
    color: #555;
}

.team-image {
    margin-top: 40px;
}

.team-image img {
    width: 100%;
    border-radius: 10px;
    background-color: #e9ecef;
}

.services-detail-section {
    padding: 80px 20px;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
    background-color: #e9ecef;
}

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

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

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #28a745;
    margin: 20px 0;
}

.service-cta {
    display: inline-block;
    background-color: #2c5f8d;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #1e4a6f;
}

.service-benefits-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.benefit-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    width: calc(50% - 15px);
    min-width: 250px;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5f8d;
}

.benefit-item p {
    font-size: 15px;
    color: #555;
}

.contact-info-section {
    padding: 80px 20px;
}

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

.contact-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.contact-card h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c5f8d;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c5f8d;
}

.contact-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.contact-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-card a {
    color: #2c5f8d;
    font-weight: 600;
}

.contact-cta {
    margin-top: 25px;
}

.location-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.location-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c5f8d;
}

.location-section > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 16px;
    color: #555;
}

.location-image {
    margin-top: 40px;
}

.location-image img {
    width: 100%;
    border-radius: 10px;
    background-color: #e9ecef;
}

.faq-section {
    padding: 80px 20px;
}

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c5f8d;
}

.faq-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

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

.thanks-info {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

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

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

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

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.step-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    width: calc(25% - 23px);
    min-width: 220px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2c5f8d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c5f8d;
}

.step-card p {
    font-size: 14px;
    color: #555;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c5f8d;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c5f8d;
}

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

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
}

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

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

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

.legal-page a {
    color: #2c5f8d;
    word-break: break-all;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

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

    .service-card {
        width: 100%;
    }

    .benefit-card {
        width: 100%;
    }

    .value-card {
        width: 100%;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-card {
        width: 100%;
    }
}