* {
    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.7;
    color: #2c3e50;
    background: #ffffff;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

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

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e8ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo a {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    flex: 1;
    text-align: center;
    padding: 0 16px;
}

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.hero-section {
    background: #f8f9fa;
}

.hero-image {
    position: relative;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 73, 94, 0.75) 100%);
    display: flex;
    align-items: center;
}

.hero-text {
    color: #ffffff;
    max-width: 620px;
}

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

.hero-text p {
    font-size: 19px;
    line-height: 1.6;
    opacity: 0.95;
}

.intro-section {
    padding: 90px 0;
    background: #ffffff;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-content p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #34495e;
}

.image-text-section {
    padding: 80px 0;
    background: #ecf0f1;
}

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

.split-image {
    flex: 1;
    background: #d5dbdb;
}

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

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #34495e;
}

.problem-section {
    padding: 90px 0;
    background: #2c3e50;
    color: #ffffff;
}

.problem-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.problem-grid {
    display: flex;
    gap: 32px;
    margin-top: 40px;
}

.problem-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    padding: 36px 28px;
    border-radius: 6px;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #ecf0f1;
}

.problem-card p {
    font-size: 16px;
    color: #bdc3c7;
    line-height: 1.7;
}

.solution-section {
    padding: 90px 0;
    background: #ffffff;
}

.solution-content {
    max-width: 820px;
    margin: 0 auto;
}

.solution-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
    text-align: center;
}

.solution-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #34495e;
    text-align: left;
}

.solution-content img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 6px;
    background: #ecf0f1;
}

.trust-section {
    padding: 90px 0;
    background: #f8f9fa;
}

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

.testimonial-layout {
    display: flex;
    gap: 36px;
}

.testimonial-item {
    flex: 1;
    background: #ffffff;
    padding: 32px;
    border-radius: 6px;
    border-left: 4px solid #27ae60;
}

.testimonial-item p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 16px;
    color: #34495e;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

.services-preview {
    padding: 90px 0;
    background: #ffffff;
}

.services-preview h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
    background: #f8f9fa;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 220px;
    background: #d5dbdb;
}

.service-card h3 {
    font-size: 21px;
    margin: 24px 24px 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    margin: 0 24px 16px;
    color: #34495e;
    line-height: 1.6;
}

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

.btn-select {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.cta-section p {
    font-size: 18px;
    color: #34495e;
}

.form-section {
    padding: 50px 0 90px;
    background: #ecf0f1;
}

.form-wrapper {
    max-width: 620px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
    text-align: center;
}

.selected-service-info {
    font-size: 16px;
    color: #27ae60;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
}

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

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

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

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

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

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

.disclaimer-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.disclaimer-text {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

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

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

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

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

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

.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 19px;
    opacity: 0.9;
}

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

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

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

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

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

.value-item {
    flex: 1 1 calc(50% - 16px);
    background: #ffffff;
    padding: 32px;
    border-radius: 6px;
}

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

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

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

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

.team-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #7f8c8d;
}

.process-section {
    padding: 80px 0;
    background: #ecf0f1;
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 6px;
    display: flex;
    gap: 24px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    flex-shrink: 0;
}

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

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

.certifications-section {
    padding: 80px 0;
    background: #ffffff;
}

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

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

.cta-about {
    padding: 80px 0;
    background: #2c3e50;
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 18px;
}

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

.btn-cta {
    display: inline-block;
    padding: 14px 36px;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

.services-detailed {
    padding: 80px 0;
    background: #ffffff;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e8ecef;
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

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

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

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

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

.service-features li {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

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

.service-detail-image {
    flex: 1;
    background: #ecf0f1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.services-cta {
    padding: 80px 0;
    background: #ecf0f1;
    text-align: center;
}

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

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

.contact-content {
    padding: 80px 0;
    background: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 0 0 320px;
}

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

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

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

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

.contact-description {
    flex: 1;
}

.contact-description h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.contact-description a {
    color: #27ae60;
    text-decoration: none;
}

.contact-description a:hover {
    text-decoration: underline;
}

.map-placeholder {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.map-info p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.8;
    text-align: center;
}

.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e8ecef;
}

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

.faq-item h3 {
    font-size: 21px;
    margin-bottom: 14px;
    color: #2c3e50;
}

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

.thanks-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.service-confirmation {
    font-size: 19px;
    font-weight: 600;
    color: #2c3e50;
    margin: 32px 0;
}

.next-steps {
    background: #ffffff;
    padding: 36px;
    border-radius: 6px;
    margin: 40px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.next-steps ol {
    padding-left: 24px;
}

.next-steps li {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 14px;
    line-height: 1.7;
}

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

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

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

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

.btn-secondary {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

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

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

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

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #34495e;
}

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

.legal-content ul {
    margin: 18px 0;
    padding-left: 32px;
}

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

.legal-content a {
    color: #27ae60;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: #2c3e50;
}

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

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

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

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

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

    .contact-info {
        flex: 1;
    }

    .footer-columns {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
    }

    .ad-disclosure {
        order: -1;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }

    .services-cards {
        flex-direction: column;
    }

    .service-card {
        min-width: auto;
    }

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

    .team-stats {
        flex-direction: column;
        gap: 32px;
    }

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