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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-actions {
    display: flex;
    gap: 10px;
}

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

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

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

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

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

.main-header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.nav-links a:hover {
    color: #3498db;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 3px;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.85), rgba(44, 62, 80, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    max-width: 800px;
    padding: 0 40px;
    text-align: center;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 22px;
    line-height: 1.5;
}

.intro-block {
    padding: 80px 40px;
    background: #ecf0f1;
}

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

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

.intro-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
}

.services-preview {
    padding: 100px 40px;
    background: #ffffff;
}

.section-label {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    color: #3498db;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.services-preview h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    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 {
    width: 100%;
    height: 220px;
    background-color: #bdc3c7;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px 24px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.why-choose {
    padding: 100px 40px;
    background: #2c3e50;
}

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #ffffff;
}

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

.benefits-list {
    list-style: none;
    margin-top: 32px;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: #ecf0f1;
    font-size: 17px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.split-visual {
    flex: 1;
    height: 500px;
    background-color: #34495e;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.form-section {
    padding: 100px 40px;
    background: #ecf0f1;
}

.form-section h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 48px;
}

.contact-form {
    background: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #3498db;
}

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

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

.trust-section {
    padding: 60px 40px;
    background: #ffffff;
}

.disclaimer-box {
    background: #fff9e6;
    border-left: 4px solid #f39c12;
    padding: 32px;
    border-radius: 4px;
}

.disclaimer-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #34495e;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

.page-header {
    padding: 80px 40px 60px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: #ffffff;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    color: #ecf0f1;
}

.services-detail {
    padding: 80px 40px;
    background: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 48px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    height: 400px;
    background-color: #bdc3c7;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 24px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #34495e;
    font-size: 16px;
}

.service-detail-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.price-tag {
    font-size: 32px;
    font-weight: 800;
    color: #27ae60;
}

.cta-section {
    padding: 80px 40px;
    background: #3498db;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

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

.btn-large {
    display: inline-block;
    padding: 18px 48px;
    background: #ffffff;
    color: #3498db;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.about-intro {
    padding: 80px 40px;
    background: #ffffff;
}

.about-intro .split-content h2 {
    color: #2c3e50;
}

.about-intro .split-content p {
    color: #34495e;
}

.values-section {
    padding: 100px 40px;
    background: #ecf0f1;
}

.values-section h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #7f8c8d;
}

.team-section {
    padding: 80px 40px;
    background: #ffffff;
}

.team-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.expertise-list {
    list-style: none;
    margin-top: 24px;
}

.expertise-list li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    color: #34495e;
    font-size: 17px;
}

.expertise-list li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 24px;
}

.approach-section {
    padding: 100px 40px;
    background: #ecf0f1;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #2c3e50;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.approach-visual {
    flex: 1;
    height: 450px;
    background-color: #bdc3c7;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.clients-section {
    padding: 80px 40px;
    background: #ffffff;
}

.clients-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #2c3e50;
}

.clients-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 32px;
}

.client-types {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.client-type {
    background: #ecf0f1;
    padding: 14px 24px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.contact-section {
    padding: 80px 40px;
    background: #ffffff;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 36px;
}

.contact-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.contact-visual {
    flex: 1;
    height: 500px;
    background-color: #bdc3c7;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.map-placeholder {
    padding: 60px 40px;
    background: #ecf0f1;
}

.map-box {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    padding: 80px;
    border-radius: 8px;
    text-align: center;
}

.map-box p {
    font-size: 17px;
    color: #7f8c8d;
}

.legal-content {
    padding: 80px 40px;
    background: #ffffff;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 32px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 8px;
}

.thanks-section {
    padding: 120px 40px;
    background: #ecf0f1;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 60px 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.thanks-container h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.service-confirmation {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.service-confirmation p {
    font-size: 17px;
    color: #27ae60;
}

.thanks-container p {
    font-size: 16px;
    line-height: 1.7;
    color: #7f8c8d;
    margin-bottom: 16px;
}

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

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

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

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

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

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

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

    .container-split,
    .service-detail-card,
    .contact-grid,
    .approach-content {
        flex-direction: column;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 16px;
    }

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

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