* {
    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-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.header-main {
    background-color: #1a2332;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.brand {
    flex: 0 0 auto;
}

.brand-name {
    font-size: 28px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 4px;
}

.brand-tagline {
    font-size: 14px;
    color: #a8b2c1;
    margin: 0;
}

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

.nav-link {
    color: #e8eaf0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #4a9eff;
}

.hero-section {
    position: relative;
    height: 580px;
    display: flex;
    align-items: center;
    background-color: #1a2332;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85) 0%, rgba(26, 35, 50, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 42px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 18px;
    max-width: 680px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 20px;
    color: #e8eaf0;
    margin-bottom: 32px;
    max-width: 600px;
}

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

.btn-primary:hover {
    background-color: #3182db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: #6c757d;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    margin-left: 12px;
}

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

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

.intro-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.intro-text {
    flex: 1 1 450px;
}

.intro-text h3 {
    font-size: 32px;
    color: #1a2332;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.intro-image {
    flex: 1 1 400px;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.section-title {
    font-size: 38px;
    color: #1a2332;
    text-align: center;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    text-align: center;
    margin-bottom: 50px;
}

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

.service-card {
    flex: 0 1 360px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #e9ecef;
}

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

.card-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #dee2e6;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 26px;
}

.card-content h4 {
    font-size: 22px;
    color: #1a2332;
    margin-bottom: 14px;
    font-weight: 700;
}

.card-content p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 18px;
    line-height: 1.6;
}

.price-tag {
    font-size: 26px;
    color: #4a9eff;
    font-weight: 700;
    margin-bottom: 18px;
}

.btn-card {
    width: 100%;
    background-color: #1a2332;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-card:hover {
    background-color: #2c3e50;
}

.btn-card.selected {
    background-color: #28a745;
}

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

.form-container {
    max-width: 620px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 42px;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.form-container h3 {
    font-size: 30px;
    color: #1a2332;
    margin-bottom: 12px;
    font-weight: 700;
}

.form-container > p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 32px;
}

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

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

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

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

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

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.btn-submit {
    padding: 14px 32px;
    background-color: #4a9eff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.trust-section h3 {
    font-size: 34px;
    color: #1a2332;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.trust-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-card {
    flex: 0 1 340px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.trust-card h4 {
    font-size: 22px;
    color: #1a2332;
    margin-bottom: 14px;
    font-weight: 700;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff3cd;
    border-top: 2px solid #ffc107;
    border-bottom: 2px solid #ffc107;
}

.disclaimer-text {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer-main {
    background-color: #1a2332;
    color: #e8eaf0;
    padding: 50px 0 20px;
}

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

.footer-column {
    flex: 1 1 250px;
}

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

.footer-column p,
.footer-column a {
    color: #a8b2c1;
    font-size: 15px;
    line-height: 1.8;
    text-decoration: none;
}

.footer-column a {
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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 1 400px;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

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

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

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

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

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

.page-header {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    color: #e8eaf0;
}

.about-content,
.services-detailed,
.contact-content,
.legal-content {
    padding: 80px 0;
}

.about-intro {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 500px;
}

.about-text h3 {
    font-size: 32px;
    color: #1a2332;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.about-image {
    flex: 1 1 400px;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.values-section,
.approach-section,
.expertise-section,
.commitment-section {
    margin-bottom: 80px;
}

.values-section h3,
.approach-section h3,
.expertise-section h3,
.commitment-section h3 {
    font-size: 32px;
    color: #1a2332;
    margin-bottom: 32px;
    font-weight: 700;
}

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

.value-card {
    flex: 0 1 calc(50% - 14px);
    padding: 28px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-card h4 {
    font-size: 22px;
    color: #1a2332;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.approach-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.approach-image {
    flex: 1 1 400px;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.approach-text {
    flex: 1 1 450px;
}

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

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

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    font-size: 17px;
    color: #4a5568;
    padding: 12px 0 12px 32px;
    position: relative;
    line-height: 1.6;
}

.expertise-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
    font-size: 18px;
}

.commitment-section p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 18px;
    line-height: 1.7;
}

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

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

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

.service-detail-content h3 {
    font-size: 30px;
    color: #1a2332;
    margin-bottom: 16px;
    font-weight: 700;
}

.price-display {
    font-size: 32px;
    color: #4a9eff;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.service-features li {
    font-size: 16px;
    color: #4a5568;
    padding: 10px 0 10px 28px;
    position: relative;
    line-height: 1.6;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
    font-size: 18px;
}

.service-detail-image {
    flex: 1 1 400px;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-section h3 {
    font-size: 34px;
    color: #1a2332;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.cta-section a {
    color: #4a9eff;
    text-decoration: underline;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-info-section {
    flex: 1 1 450px;
}

.contact-info-section h3 {
    font-size: 32px;
    color: #1a2332;
    margin-bottom: 32px;
    font-weight: 700;
}

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

.contact-block h4 {
    font-size: 20px;
    color: #1a2332;
    margin-bottom: 10px;
    font-weight: 700;
}

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

.contact-note {
    padding: 20px;
    background-color: #e7f3ff;
    border-left: 4px solid #4a9eff;
    border-radius: 4px;
    margin-top: 32px;
}

.contact-note p {
    font-size: 15px;
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
}

.contact-image-section {
    flex: 1 1 400px;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.contact-image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.location-section {
    margin-bottom: 60px;
}

.location-section h3 {
    font-size: 28px;
    color: #1a2332;
    margin-bottom: 20px;
    font-weight: 700;
}

.location-section p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.contact-faq h3 {
    font-size: 28px;
    color: #1a2332;
    margin-bottom: 28px;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 28px;
}

.faq-item h4 {
    font-size: 20px;
    color: #1a2332;
    margin-bottom: 10px;
    font-weight: 700;
}

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

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

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    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 32px;
}

.thanks-content h2 {
    font-size: 36px;
    color: #1a2332;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.service-confirmation {
    background-color: #e7f3ff;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 32px;
}

.service-confirmation p {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

.thanks-info {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 24px;
    color: #1a2332;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.next-steps {
    list-style: none;
    padding: 0;
}

.next-steps li {
    font-size: 16px;
    color: #4a5568;
    padding: 12px 0 12px 32px;
    position: relative;
    line-height: 1.6;
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: 700;
    font-size: 18px;
}

.thanks-contact {
    background-color: #fff3cd;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 32px;
}

.thanks-contact p {
    font-size: 16px;
    color: #856404;
    margin: 0 0 8px 0;
}

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

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

.legal-text h3 {
    font-size: 28px;
    color: #1a2332;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-text h4 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 28px;
    margin-bottom: 14px;
    font-weight: 700;
}

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

.legal-text a {
    color: #4a9eff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-main {
        gap: 16px;
    }

    .hero-section {
        height: 480px;
    }

    .hero-title {
        font-size: 32px;
    }

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

    .intro-wrapper,
    .about-intro,
    .approach-wrapper,
    .contact-wrapper {
        flex-direction: column;
    }

    .section-title {
        font-size: 30px;
    }

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

    .value-card {
        flex: 1 1 100%;
    }

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

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

    .btn-secondary {
        margin-left: 0;
    }
}