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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

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

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

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

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

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

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

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

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

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

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

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

.ad-notice {
    font-size: 13px;
    color: #718096;
    padding: 6px 12px;
    background-color: #edf2f7;
    border-radius: 4px;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f7fafc;
}

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

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

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2a3f5f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1a2940;
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
}

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

.intro-image,
.intro-content {
    flex: 1;
}

.intro-image {
    display: flex;
    overflow: hidden;
}

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

.intro-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a202c;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-grid {
    padding: 100px 40px;
    background-color: #f7fafc;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a202c;
}

.section-header p {
    font-size: 20px;
    color: #718096;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px 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 8px 24px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 240px;
    overflow: hidden;
}

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

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a202c;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2a3f5f;
    margin-bottom: 20px;
}

.btn-select,
.btn-service-select {
    width: 100%;
    padding: 14px 24px;
    background-color: #48bb78;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover,
.btn-service-select:hover {
    background-color: #38a169;
}

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

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

.form-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a202c;
}

.form-content > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a5568;
}

.form-visual {
    flex: 1;
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.selected-service-display {
    padding: 16px;
    background-color: #edf2f7;
    border-radius: 8px;
    font-weight: 600;
    color: #2a3f5f;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #2a3f5f;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-split {
    display: flex;
}

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

.trust-image,
.trust-content {
    flex: 1;
}

.trust-image {
    overflow: hidden;
}

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

.trust-content {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2a3f5f;
}

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

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section p {
    color: #cbd5e0;
    line-height: 1.8;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px 0;
    border-top: 1px solid #2d3748;
    border-bottom: 1px solid #2d3748;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: #a0aec0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    color: #718096;
}

.page-hero {
    padding: 80px 40px;
    text-align: center;
    background-color: #f7fafc;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a202c;
}

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

.about-split,
.values-split,
.expertise-split {
    display: flex;
}

.about-split.reverse,
.values-split.reverse,
.expertise-split.reverse {
    flex-direction: row-reverse;
}

.about-content,
.values-content,
.expertise-content,
.about-image,
.values-image,
.expertise-image {
    flex: 1;
}

.about-image,
.values-image,
.expertise-image {
    overflow: hidden;
}

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

.about-content,
.values-content,
.expertise-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2,
.values-content h2,
.expertise-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a202c;
}

.about-content p,
.expertise-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

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

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2a3f5f;
}

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

.services-detail {
    padding: 60px 40px;
}

.service-detail-item {
    display: flex;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.service-detail-image {
    overflow: hidden;
}

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

.service-detail-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f7fafc;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-detail-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #4a5568;
}

.service-detail-content ul {
    margin-bottom: 32px;
    padding-left: 24px;
}

.service-detail-content li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #4a5568;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #2a3f5f;
    margin-bottom: 24px;
}

.services-cta {
    padding: 100px 40px;
    background-color: #2a3f5f;
    text-align: center;
}

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

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #e2e8f0;
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background-color: #48bb78;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

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

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

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2a3f5f;
}

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

.contact-visual {
    flex: 1;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
}

.contact-additional {
    padding: 80px 60px;
    background-color: #f7fafc;
}

.additional-content {
    max-width: 1000px;
    margin: 0 auto;
}

.additional-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.additional-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.thanks-section {
    padding: 120px 40px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a202c;
}

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

.thanks-info {
    padding: 24px;
    background-color: #edf2f7;
    border-radius: 8px;
    margin: 32px 0;
}

.btn-back {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2a3f5f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-back:hover {
    background-color: #1a2940;
}

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
}

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

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2d3748;
}

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

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

.legal-page li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #4a5568;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .form-split,
    .trust-split,
    .about-split,
    .values-split,
    .expertise-split,
    .contact-split,
    .service-detail-item {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .form-content,
    .trust-content,
    .about-content,
    .values-content,
    .expertise-content,
    .contact-info,
    .service-detail-content {
        padding: 60px 40px;
    }

    .hero-image,
    .intro-image,
    .form-visual,
    .trust-image,
    .about-image,
    .values-image,
    .expertise-image,
    .contact-visual,
    .service-detail-image {
        min-height: 400px;
    }

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

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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