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

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

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

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

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

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

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

.ad-label {
    font-size: 12px;
    color: #95a5a6;
    border: 1px solid #95a5a6;
    padding: 4px 10px;
    border-radius: 3px;
}

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

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

.hero-right {
    flex: 1;
    min-height: 600px;
}

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

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

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

.btn-primary:hover {
    background-color: #234a85;
}

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

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

.intro-split {
    display: flex;
}

.split-left, .split-right {
    flex: 1;
}

.split-right {
    padding: 80px 60px;
}

.content-box h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a2332;
}

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

.services-grid {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

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

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.card-content {
    padding: 28px;
}

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

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

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

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

.btn-select:hover {
    background-color: #234a85;
}

.service-card.selected {
    border: 3px solid #2c5aa0;
    box-shadow: 0 0 0 4px rgba(44, 90, 160, 0.1);
}

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

.form-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    padding: 0 20px;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a2332;
}

.form-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #4a5568;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    width: 24px;
    height: 24px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.service-display {
    padding: 12px;
    background-color: #ffffff;
    border: 2px solid #2c5aa0;
    border-radius: 4px;
    font-weight: 600;
    color: #2c5aa0;
}

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

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

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

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

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2332;
}

.testimonials-flex {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5aa0;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff8e1;
}

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

.footer {
    background-color: #1a2332;
    color: #e8eaed;
    padding: 60px 0 30px;
}

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

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

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

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

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 280px;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

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

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

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

.page-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.header-subtitle {
    font-size: 18px;
    color: #e8eaed;
}

.about-split {
    padding: 100px 0;
}

.split-content {
    display: flex;
    gap: 0;
}

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

.content-left h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a2332;
}

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

.content-right {
    flex: 1;
}

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

.process-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2332;
}

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

.process-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a2332;
}

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

.values-split {
    display: flex;
}

.values-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.values-content {
    padding: 80px 60px;
}

.values-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a2332;
}

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

.values-right {
    flex: 1;
}

.team-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 24px;
    color: #1a2332;
}

.team-intro {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #4a5568;
}

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

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

.detail-split {
    display: flex;
    gap: 0;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.detail-left,
.detail-right {
    flex: 1;
}

.detail-right {
    padding: 50px;
}

.detail-right h2 {
    font-size: 30px;
    margin-bottom: 16px;
    color: #1a2332;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 20px;
}

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

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

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

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

.service-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-info h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2332;
}

.info-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a2332;
}

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

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

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a2332;
}

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

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

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

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

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 8px;
}

.contact-visual {
    flex: 1;
}

.response-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.response-info h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2332;
}

.response-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.response-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.response-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a2332;
}

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

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

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a2332;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a5568;
}

.service-confirmation {
    margin-bottom: 40px;
}

.selected-service-info {
    font-size: 17px;
    color: #2c5aa0;
    background-color: #e8f4fd;
    padding: 16px;
    border-radius: 4px;
}

.next-steps {
    margin-bottom: 50px;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a2332;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: steps;
    max-width: 600px;
    margin: 0 auto;
}

.steps-list li {
    counter-increment: steps;
    padding: 16px 0 16px 50px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.steps-list li:before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 16px;
    width: 32px;
    height: 32px;
    background-color: #2c5aa0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

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

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

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

.legal-text h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c5aa0;
}

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

.legal-text ul {
    margin-bottom: 16px;
    padding-left: 32px;
}

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

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

.legal-text a:hover {
    color: #234a85;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .split-content,
    .values-split,
    .form-split,
    .contact-layout,
    .detail-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        min-height: 400px;
    }

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

    .services-flex {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }

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

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

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

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

    .testimonials-flex,
    .process-grid,
    .info-grid,
    .response-grid {
        flex-direction: column;
    }
}