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

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

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

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

.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;
}

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

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

.nav-main a {
    text-decoration: none;
    color: #4a5568;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-main a:hover {
    color: #2b6cb0;
}

.ad-label {
    font-size: 11px;
    color: #718096;
    background-color: #f7fafc;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2d3748;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px;
    gap: 15px;
}

.mobile-nav a {
    text-decoration: none;
    color: #4a5568;
    font-size: 16px;
}

.ad-label-mobile {
    font-size: 11px;
    color: #718096;
    background-color: #f7fafc;
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    display: inline-block;
}

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

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

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

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

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

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

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

.btn-primary:hover {
    background-color: #2c5282;
}

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

.btn-secondary:hover {
    background-color: #2b6cb0;
    color: #ffffff;
}

.btn-white {
    display: inline-block;
    background-color: #ffffff;
    color: #2b6cb0;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: #f7fafc;
}

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

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.3;
}

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

.image-block {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.services-preview {
    padding: 80px 0;
    background-color: #f7fafc;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    overflow: hidden;
    height: 200px;
}

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

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    padding: 24px 24px 12px;
    line-height: 1.4;
}

.service-card p {
    font-size: 15px;
    color: #4a5568;
    padding: 0 24px 16px;
    line-height: 1.6;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2b6cb0;
    padding: 0 24px 16px;
}

.service-card .btn-secondary {
    margin: 0 24px 24px;
}

.benefits-split {
    display: flex;
    min-height: 700px;
}

.benefits-left {
    flex: 1;
    padding: 80px 60px;
}

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

.benefits-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.benefits-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 40px;
}

.benefit-item {
    margin-bottom: 36px;
}

.benefit-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

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

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

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

.form-intro {
    text-align: center;
    color: #4a5568;
    font-size: 17px;
    margin-bottom: 48px;
}

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

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

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

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

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

.contact-form .btn-primary {
    width: 100%;
    margin-top: 12px;
}

.cta-section {
    padding: 100px 0;
    background-color: #2b6cb0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #e6f2ff;
    margin-bottom: 32px;
}

.footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 0 20px;
}

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

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

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

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

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

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

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

.disclaimer {
    font-size: 13px;
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #e2e8f0;
    line-height: 1.5;
}

.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 ease;
}

.btn-accept {
    background-color: #2b6cb0;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #cbd5e0;
    border: 1px solid #4a5568;
}

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

.page-hero {
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

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

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

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

.about-left {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.about-right img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

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

.mission-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 60px;
}

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

.mission-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);
}

.mission-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

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

.values-split {
    display: flex;
    min-height: 700px;
}

.values-left {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.values-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 40px;
}

.value-item {
    margin-bottom: 36px;
}

.value-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

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

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

.team-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.client-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 8px;
}

.client-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 14px;
}

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

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

.service-detail-card {
    margin-bottom: 60px;
}

.service-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-split.reverse {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.service-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
    margin-top: 24px;
}

.service-info ul {
    margin-bottom: 28px;
    padding-left: 20px;
}

.service-info ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.price-box {
    background-color: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: #4a5568;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #2b6cb0;
}

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

.contact-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

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

.contact-detail h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 10px;
}

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

.contact-map {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

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

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

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 14px;
    line-height: 1.4;
}

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

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #48bb78;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

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

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

.thanks-details {
    font-size: 18px;
    color: #2b6cb0;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.legal-content {
    padding: 60px 0 80px;
}

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

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a202c;
    margin-top: 32px;
    margin-bottom: 12px;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-content a {
    color: #2b6cb0;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2c5282;
}

.update-date {
    margin-top: 40px;
    font-style: italic;
    color: #718096;
}

@media (max-width: 992px) {
    .hero-split,
    .about-split,
    .benefits-split,
    .values-split {
        flex-direction: column;
    }

    .hero-left,
    .about-left,
    .benefits-left,
    .values-left {
        padding: 60px 30px;
    }

    .hero-right,
    .about-right,
    .benefits-right,
    .values-right {
        min-height: 400px;
    }

    .split-content,
    .service-split,
    .contact-split {
        flex-direction: column;
    }

    .service-split.reverse {
        flex-direction: column;
    }

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

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

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }
}

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

    .hamburger {
        display: flex;
    }

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

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

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

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

    .service-card,
    .mission-card,
    .client-card,
    .faq-item {
        flex: 1 1 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

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

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

@media (max-width: 480px) {
    .hero-left,
    .about-left,
    .benefits-left,
    .values-left {
        padding: 40px 20px;
    }

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

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

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