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

.ad-notice {
    background-color: #f39c12;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    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;
    height: 70px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a5f;
}

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

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

.nav-links a:hover {
    color: #4a90e2;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #2c3e50;
}

.hero {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #f8f9fb;
}

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

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1e3a5f;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: #4a90e2;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #357abd;
}

.intro-statement {
    padding: 80px 0;
}

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

.statement-card h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e3a5f;
    line-height: 1.3;
}

.statement-card p {
    font-size: 19px;
    color: #5a6c7d;
}

.services-grid {
    padding: 80px 0;
    background-color: #f8f9fb;
}

.services-grid h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1e3a5f;
}

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

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1e3a5f;
}

.card-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.card-price {
    font-size: 20px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 18px;
}

.btn-select-service {
    width: 100%;
    padding: 12px 24px;
    background-color: #50c878;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #45b369;
}

.value-blocks {
    padding: 80px 0;
}

.value-blocks .container {
    display: flex;
    gap: 30px;
}

.value-block {
    flex: 1;
    padding: 40px;
    border-radius: 12px;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1e3a5f;
}

.value-block p {
    font-size: 16px;
    color: #5a6c7d;
}

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

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

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1e3a5f;
}

.form-intro p {
    font-size: 17px;
    color: #5a6c7d;
}

.main-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    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: #4a90e2;
}

.btn-submit {
    width: 100%;
    padding: 15px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-indicators {
    padding: 80px 0;
}

.trust-indicators h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #1e3a5f;
}

.indicators-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.indicator {
    text-align: center;
}

.indicator-number {
    font-size: 48px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 10px;
}

.indicator-label {
    font-size: 16px;
    color: #5a6c7d;
}

.main-footer {
    background-color: #1e3a5f;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

.footer-column a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 10px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-disclaimer {
    background-color: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

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

.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;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
}

.cookie-content a {
    color: #4a90e2;
}

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

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

.btn-accept {
    background-color: #50c878;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #45b369;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.page-header {
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 19px;
    opacity: 0.95;
}

.services-detailed {
    padding: 80px 0;
}

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

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

.detail-content {
    flex: 1;
}

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

.detail-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.detail-content ul {
    margin: 20px 0 30px 20px;
}

.detail-content li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 10px;
}

.detail-pricing {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #4a90e2;
}

.detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e3a5f;
}

.cta-section p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.about-content {
    padding: 80px 0;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-intro h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e3a5f;
}

.about-intro p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-mission-card {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    border-radius: 12px;
}

.about-mission-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1e3a5f;
}

.about-mission-card p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
}

.approach-section,
.values-section {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.approach-section h2,
.values-section h2,
.team-intro h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #1e3a5f;
}

.approach-cards {
    display: flex;
    gap: 30px;
}

.approach-card {
    flex: 1;
    padding: 30px;
    border-radius: 12px;
}

.approach-card h4 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #1e3a5f;
}

.approach-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.value-item p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.6;
}

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

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

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    align-items: center;
}

.contact-info {
    flex: 1;
}

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

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

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

.contact-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-note {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 12px;
}

.contact-note h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1e3a5f;
}

.contact-note p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.thanks-section {
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #50c878;
    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: 40px;
    margin-bottom: 20px;
    color: #1e3a5f;
}

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

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

.thanks-details p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #4a90e2;
    text-decoration: none;
    border: 2px solid #4a90e2;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #4a90e2;
    color: #ffffff;
}

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

.legal-date {
    text-align: center;
    font-style: italic;
    color: #5a6c7d;
    margin-bottom: 40px;
}

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

.legal-content h1 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 10px;
    color: #1e3a5f;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1e3a5f;
}

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

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #1e3a5f;
}

.legal-content p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 30px;
}

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

.legal-content a {
    color: #4a90e2;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        flex-direction: column;
    }

    .hero-content {
        padding: 40px 20px;
    }

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

    .hero-image {
        height: 300px;
    }

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

    .value-blocks .container {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .indicators-grid {
        flex-direction: column;
        gap: 30px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .approach-cards {
        flex-direction: column;
    }

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

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

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