* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #3498db;
}

.ad-label {
    font-size: 11px;
    color: #999;
    background-color: #f5f5f5;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 500;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
}

.ad-label-mobile {
    font-size: 11px;
    color: #999;
    padding: 8px 0;
    margin-top: 10px;
    border-top: 1px solid #eee;
}

.hero-card {
    margin-top: 0;
}

.hero-image {
    min-height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    width: 100%;
    padding: 80px 0;
}

.hero-overlay h1 {
    font-size: 46px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 680px;
}

.hero-overlay p {
    font-size: 20px;
    color: #fff;
    max-width: 560px;
    opacity: 0.95;
}

.intro-cards {
    padding: 70px 0;
    background-color: #f8f9fa;
}

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

.card-intro h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.card-intro p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

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

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

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 28px);
    min-width: 320px;
    max-width: 400px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.card-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 28px;
}

.card-body h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 14px;
    font-weight: 700;
}

.card-body p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 18px;
}

.price {
    font-size: 28px;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #2980b9;
}

.btn-select:active {
    transform: scale(0.98);
}

.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-card {
    max-width: 680px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.form-card h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-card > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-submit:active {
    transform: scale(0.98);
}

.trust-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

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

.trust-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 280px;
    max-width: 360px;
    padding: 36px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

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

.trust-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

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

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

.footer-col {
    flex: 1 1 220px;
}

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

.footer-col p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

.footer-col a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 12px;
    color: #7f8c8d;
    max-width: 900px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.96);
    color: #fff;
    padding: 24px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
}

.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 {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #27ae60;
    color: #fff;
}

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

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

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

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

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

.page-hero p {
    font-size: 18px;
    opacity: 0.95;
}

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

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.about-image {
    flex: 1;
    height: 480px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
}

.values-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 28px);
    min-width: 280px;
    padding: 32px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 14px;
    font-weight: 700;
}

.value-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.team-section {
    padding: 70px 0;
    background-color: #fff;
}

.team-section h2 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-section > p {
    font-size: 17px;
    color: #666;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    padding: 24px;
}

.stat-number {
    font-size: 48px;
    color: #3498db;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #777;
    font-weight: 500;
}

.approach-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.approach-section h2 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.approach-steps {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1 1 calc(50% - 28px);
    min-width: 280px;
    padding: 32px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
}

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

.step-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    background-color: #fff;
}

.cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    color: #fff;
}

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

.cta-card p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.services-detail {
    padding: 80px 0;
    background-color: #fff;
}

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

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

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

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

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

.service-detail-content ul {
    list-style: none;
    margin: 24px 0;
}

.service-detail-content ul li {
    font-size: 15px;
    color: #666;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    color: #27ae60;
    font-weight: 700;
    margin: 24px 0;
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #2980b9;
}

.service-detail-image {
    flex: 1;
    height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
}

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

.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 32px;
    font-weight: 700;
}

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

.info-block h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-block p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

.faq-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 28px);
    min-width: 280px;
    padding: 28px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

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

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

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

.thanks-card {
    max-width: 680px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin: 0 auto 28px;
}

.thanks-card h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.service-confirmation {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-detail {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.btn-primary {
    padding: 14px 32px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    padding: 14px 32px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #fff;
}

.next-steps {
    padding: 70px 0;
    background-color: #fff;
}

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

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

.step-item {
    flex: 1;
    max-width: 340px;
    text-align: center;
    padding: 32px 24px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.legal-content {
    padding: 60px 0;
    background-color: #fff;
}

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

.legal-text h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-text h3 {
    font-size: 22px;
    color: #34495e;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.legal-text ul {
    margin: 16px 0 24px 24px;
}

.legal-text ul li {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-text a {
    color: #3498db;
    text-decoration: underline;
}

.legal-text a:hover {
    color: #2980b9;
}

.legal-text em {
    font-size: 14px;
    color: #999;
    display: block;
    margin-bottom: 28px;
}

@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu.active {
        display: flex;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .cards-container {
        gap: 20px;
    }

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

    .about-grid {
        flex-direction: column;
        gap: 40px;
    }

    .about-image {
        height: 320px;
    }

    .service-detail-card {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }

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

    .service-detail-image {
        height: 300px;
    }

    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .approach-steps {
        gap: 20px;
    }

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

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

    .step-item {
        max-width: 100%;
    }

    .form-card {
        padding: 36px 24px;
    }

    .cta-card {
        padding: 40px 24px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

    .thanks-card {
        padding: 40px 24px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .hero-overlay h1 {
        font-size: 28px;
    }

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

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

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

    .team-stats {
        gap: 24px;
    }
}