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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style-position: inside;
}

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

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

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

.header-main {
    background-color: #1a1a2e;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.navigation ul li a {
    color: #e0e0e0;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navigation ul li a:hover {
    color: #4a9eff;
}

.ad-notice {
    font-size: 13px;
    color: #a8a8b8;
    font-style: italic;
    padding: 6px 14px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

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

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

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

.btn-cookie.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #7f8c8d;
}

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

.split-container {
    display: flex;
    min-height: 500px;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
}

.split-left img,
.split-right img {
    width: 100%;
    height: 100%;
}

.hero-content {
    max-width: 600px;
    color: #ffffff;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

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

.btn-primary:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #4a9eff;
    color: #ffffff;
}

.intro-asymmetric {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.intro-block {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 22px;
    line-height: 1.8;
    color: #34495e;
    font-weight: 400;
}

.section-split,
.section-split-reverse {
    margin: 60px 0;
}

.section-split-reverse .split-container {
    flex-direction: row-reverse;
}

.content-block {
    max-width: 550px;
}

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

.content-block p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 24px 0;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
}

.trust-indicators {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.trust-indicators h3 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.trust-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #2c3e50;
}

.trust-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.form-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 16px;
    color: #5a6c7d;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #dfe6e9;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

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

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

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

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

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

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

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

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

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

.footer-bottom .disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
    margin-bottom: 16px;
    max-width: 900px;
}

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

.page-hero-split .split-container {
    min-height: 400px;
}

.page-hero-split .hero-content h2 {
    font-size: 42px;
}

.about-story {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-story h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-story p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.values-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.values-section h3 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.value-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #2c3e50;
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.cta-about {
    padding: 80px 20px;
    background-color: #ffffff;
}

.cta-box {
    background-color: #3498db;
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
    color: #ffffff;
}

.cta-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.cta-box .btn-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-box .btn-primary:hover {
    background-color: #ecf0f1;
}

.services-detailed {
    padding: 60px 20px;
}

.service-block {
    margin-bottom: 80px;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-layout-reverse {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 60px;
}

.service-image {
    flex: 1;
    min-width: 350px;
}

.service-content {
    flex: 1.2;
    padding: 30px;
}

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

.service-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.service-features {
    margin: 24px 0;
    padding-left: 20px;
}

.service-features li {
    font-size: 15px;
    line-height: 1.9;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 20px;
}

.service-guarantee {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.service-guarantee h3 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: #2c3e50;
}

.service-guarantee > p {
    font-size: 17px;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #5a6c7d;
}

.guarantee-points {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.guarantee-item {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    text-align: center;
}

.guarantee-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.guarantee-item p {
    font-size: 15px;
    color: #5a6c7d;
}

.cta-services {
    text-align: center;
}

.contact-info-split {
    padding: 60px 20px;
}

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

.contact-details {
    flex: 1.2;
}

.contact-details h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e50;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-image {
    flex: 1;
}

.contact-instructions {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.contact-instructions h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.contact-instructions p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.contact-instructions a {
    color: #3498db;
    text-decoration: underline;
}

.contact-cta {
    padding: 80px 20px;
    background-color: #ffffff;
}

.thanks-page {
    padding: 100px 20px;
    background-color: #f8f9fa;
    min-height: 500px;
}

.thanks-content {
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #27ae60;
}

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

.thanks-details {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-details ul {
    list-style-position: inside;
}

.thanks-details li {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 10px;
    color: #5a6c7d;
}

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

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

.service-name {
    font-size: 18px;
    font-weight: 600;
    color: #3498db;
}

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

.thanks-contact {
    font-size: 15px;
    color: #7f8c8d;
}

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

.legal-page h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.update-date {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 40px;
}

.legal-page h3 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-page ul,
.legal-page ol {
    margin: 16px 0 16px 30px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #5a6c7d;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2980b9;
}

@media (max-width: 968px) {
    .split-container {
        flex-direction: column;
    }

    .section-split-reverse .split-container {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 40px 30px;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .navigation ul {
        flex-direction: column;
        gap: 15px;
    }

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

    .split-layout,
    .split-layout-reverse {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

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

    .trust-grid,
    .values-grid,
    .guarantee-points {
        flex-direction: column;
        align-items: center;
    }
}
