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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.main-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-color);
}

.ad-notice {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 4px;
}

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

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: var(--bg-light);
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-text .lead {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

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

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

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

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

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

.intro-block {
    flex: 1.5;
}

.intro-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.intro-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-item {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

.services-showcase {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.section-header-center p {
    font-size: 18px;
    color: var(--text-light);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    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.1);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.select-service-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service-btn:hover {
    background: var(--secondary-color);
}

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

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

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--text-dark);
}

.form-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.form-container {
    flex: 1;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    background: var(--bg-white);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    padding: 14px;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.trust-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.trust-content-split {
    display: flex;
    gap: 60px;
}

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

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

.trust-text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-text-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.trust-text-block p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

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

.trust-point h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.trust-point p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

.main-footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #bdc3c7;
    margin-bottom: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

.btn-accept {
    background: var(--success-color);
    color: var(--bg-white);
}

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

.btn-reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.page-hero {
    padding: 80px 0 40px;
    background: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

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

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

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

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.content-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.values-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title-center {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.approach-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.approach-item {
    flex: 1;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
}

.approach-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
    opacity: 0.3;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.approach-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.cta-box {
    background: var(--primary-color);
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    color: var(--bg-white);
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

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

.cta-box .cta-primary {
    background: var(--bg-white);
    color: var(--primary-color);
}

.cta-box .cta-primary:hover {
    background: var(--bg-light);
}

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

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text-dark);
    font-size: 15px;
}

.service-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 24px;
    line-height: 1;
}

.service-price-detail {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

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

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

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

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info-block p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

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

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

.additional-info {
    padding: 60px 0;
    background: var(--bg-light);
}

.info-cards {
    display: flex;
    gap: 30px;
}

.info-card {
    flex: 1;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-confirmation {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 16px;
}

.next-steps {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--bg-white);
}

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

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--bg-white);
}

.legal-page {
    padding: 60px 0;
}

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

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
    color: var(--text-light);
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-split,
    .intro-grid,
    .form-wrapper-split,
    .trust-content-split,
    .content-split,
    .content-split-reverse,
    .values-grid,
    .approach-grid,
    .service-detail-item,
    .contact-grid,
    .info-cards,
    .footer-grid {
        flex-direction: column;
    }

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

    .hero-text h1,
    .page-hero h1,
    .thanks-content h1 {
        font-size: 32px;
    }

    .section-header-center h2,
    .section-title-center {
        font-size: 28px;
    }

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

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

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .ad-notice {
        width: 100%;
        text-align: center;
    }
}