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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
}

.ad-notice {
    background: #f7fafc;
    color: #4a5568;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 20px;
    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-primary {
    background: #3182ce;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
}

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

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 10px 24px;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

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

.header-right {
    display: flex;
    gap: 32px;
}

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

.header-right a:hover {
    color: #2d3748;
}

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

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

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

.hero-content-left p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 560px;
}

.btn-large {
    display: inline-block;
    background: #2b6cb0;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-large:hover {
    background: #2c5aa0;
}

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

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

.intro-asymmetric {
    padding: 100px 60px 80px 120px;
    background: #f7fafc;
}

.intro-block {
    max-width: 740px;
}

.intro-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

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

.services-grid {
    padding: 100px 60px;
}

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

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

.section-header-center p {
    font-size: 17px;
    color: #4a5568;
}

.service-cards-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

.btn-service {
    background: #3182ce;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    align-self: flex-start;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #2c5aa0;
}

.form-section-split {
    display: flex;
    background: #edf2f7;
    min-height: 500px;
}

.form-container-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.form-container-left p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.form-wrapper-right {
    flex: 1;
    padding: 60px;
    background: #ffffff;
}

.main-form {
    max-width: 500px;
}

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

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

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

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

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

.btn-submit:hover {
    background: #2c5aa0;
}

.trust-section {
    display: flex;
    padding: 80px 60px;
}

.trust-content {
    flex: 1;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.trust-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 60px;
    background: #1a202c;
    color: #ffffff;
    gap: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #cbd5e0;
}

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

.footer-column a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
}

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

.disclaimer-text {
    font-size: 12px;
    color: #718096;
    line-height: 1.5;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
}

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

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

.thanks-service {
    background: #edf2f7;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-service strong {
    color: #2b6cb0;
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

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

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

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

.page-container ul,
.page-container ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

.contact-info {
    background: #f7fafc;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-info h2 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .hero-split,
    .form-section-split,
    .trust-section,
    .service-card {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .header-split {
        flex-direction: column;
        gap: 20px;
    }

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

    .hero-content-left,
    .form-container-left,
    .form-wrapper-right {
        padding: 40px 30px;
    }
}