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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    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-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

.btn-cookie-alt {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.header-main {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.brand-name {
    font-size: 26px;
    font-weight: 600;
    color: #2c3e50;
}

.nav-main ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-main a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-main a:hover {
    color: #27ae60;
}

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
    gap: 0;
}

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

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

.hero-content-left p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.hero-image-right {
    flex: 1;
    background-color: #e8f5e9;
    overflow: hidden;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-primary {
    display: inline-block;
    background-color: #27ae60;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s;
    align-self: flex-start;
}

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

.intro-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

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

.intro-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    color: #5a6c7d;
    text-align: center;
}

.services-overview {
    padding: 100px 30px;
    background-color: #fff;
}

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

.section-header-offset {
    margin-bottom: 60px;
    padding-left: 40px;
}

.section-header-offset h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.section-header-offset p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-left,
.service-card-right {
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-card-left .service-image {
    flex: 0 0 400px;
}

.service-card-left .service-info {
    flex: 1;
}

.service-card-right .service-info {
    flex: 1;
    order: 1;
}

.service-card-right .service-image {
    flex: 0 0 400px;
    order: 2;
}

.service-image {
    background-color: #e8f5e9;
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-info h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 16px;
}

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

.price-tag {
    font-size: 28px;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 16px;
}

.btn-select-service {
    background-color: #2c3e50;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background-color: #1a252f;
}

.btn-select-service.selected {
    background-color: #27ae60;
}

.form-section {
    padding: 80px 30px;
    background-color: #f0f4f3;
}

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

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

.form-intro h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 16px;
}

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

.main-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

.form-field label {
    display: block;
    font-size: 14px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #27ae60;
}

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

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

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

.trust-section {
    padding: 80px 30px;
    background-color: #fff;
}

.trust-points {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

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

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

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

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

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

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

.footer-column a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #465a68;
}

.disclaimer {
    font-size: 12px;
    color: #95a5a6;
    line-height: 1.6;
}

.page-hero {
    padding: 80px 30px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: #5a6c7d;
}

.about-content {
    padding: 80px 30px;
    background-color: #fff;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 24px;
}

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

.about-image {
    flex: 0 0 500px;
    background-color: #e8f5e9;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.philosophy-section {
    padding: 80px 30px;
    background-color: #f0f4f3;
}

.philosophy-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 24px;
    text-align: center;
}

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

.values-section {
    padding: 80px 30px;
    background-color: #fff;
}

.values-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: center;
}

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

.value-item {
    flex: 1;
}

.value-item h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

.services-detail {
    padding: 80px 30px;
    background-color: #fff;
}

.service-detail-item {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-item:last-child {
    border-bottom: none;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.service-detail-header h2 {
    font-size: 28px;
    color: #2c3e50;
}

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

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

.service-detail-content ul {
    list-style: none;
    margin-top: 24px;
}

.service-detail-content ul li {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 20px;
}

.services-cta {
    padding: 80px 30px;
    background-color: #f0f4f3;
    text-align: center;
}

.services-cta h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.services-cta p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

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

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #fff;
}

.contact-section {
    padding: 80px 30px;
    background-color: #fff;
}

.container-contact {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-block {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
}

.contact-info-block h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 40px;
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
}

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

.thanks-section {
    padding: 120px 30px;
    background-color: #f0f4f3;
    min-height: 400px;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.selected-service-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin: 32px 0;
}

.selected-service-info p {
    font-size: 16px;
    color: #2c3e50;
}

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

.legal-page {
    padding: 80px 30px;
    background-color: #fff;
}

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

.container-legal h1 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 12px;
}

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

.legal-section ul {
    list-style: none;
    margin: 16px 0;
}

.legal-section ul li {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.legal-section ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #27ae60;
}

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

    .service-card-left,
    .service-card-right {
        flex-direction: column;
    }

    .service-card-left .service-image,
    .service-card-right .service-image {
        flex: 1;
        width: 100%;
    }

    .service-card-right .service-info {
        order: 2;
    }

    .service-card-right .service-image {
        order: 1;
    }

    .trust-points {
        flex-direction: column;
    }

    .container-footer {
        flex-direction: column;
        gap: 30px;
    }

    .container-header {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .about-image {
        flex: 1;
        width: 100%;
    }

    .values-grid {
        flex-direction: column;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .contact-info-block {
        padding: 30px;
    }
}