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

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 32px;
    z-index: 999;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #e67e22;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

.nav-menu a:hover {
    color: #e67e22;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

.hero-section {
    background-color: #ecf0f1;
    padding: 0;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px 60px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-content p {
    font-size: 20px;
    color: #555;
    max-width: 600px;
}

.hero-image {
    background-color: #bdc3c7;
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.intro-block {
    background-color: #ffffff;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 18px;
    line-height: 1.8;
    color: #555;
}

.visual-break {
    background-color: #95a5a6;
    padding: 0;
}

.visual-break img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.services-preview {
    background-color: #f8f9fa;
}

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

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    flex: 1;
    min-width: 300px;
    max-width: 360px;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #bdc3c7;
}

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

.service-card p {
    margin: 0 25px 20px;
    color: #666;
    line-height: 1.6;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #e67e22;
    margin: 0 25px 25px;
}

.benefits-section {
    background-color: #34495e;
    color: #ecf0f1;
}

.benefits-section h2 {
    display: none;
}

.benefit-item {
    margin-bottom: 45px;
}

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

.benefit-item h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #e67e22;
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.7;
}

.image-divider {
    background-color: #95a5a6;
    padding: 0;
}

.image-divider img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.form-section {
    background-color: #ffffff;
}

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

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 45px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-row input,
.form-row select {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #ddd;
    background-color: #fafafa;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: #e67e22;
    background-color: #ffffff;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background-color: #e67e22;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    background-color: #ecf0f1;
}

.trust-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.trust-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

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

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #e67e22;
}

.footer-col p {
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px 0;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
}

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

.cookie-btn {
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

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

.cookie-btn:hover {
    opacity: 0.85;
}

.disclaimer {
    background-color: #f8f9fa;
    border-top: 3px solid #e67e22;
    padding: 30px;
}

.disclaimer p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.page-header {
    background-color: #34495e;
    color: #ecf0f1;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 19px;
    color: #bdc3c7;
}

.services-full {
    background-color: #ffffff;
}

.service-full-item {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

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

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

.service-full-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

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

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

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

.service-full-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-full-content ul li {
    padding: 8px 0;
    font-size: 16px;
    color: #666;
    border-bottom: 1px solid #ecf0f1;
}

.service-price {
    font-size: 34px;
    font-weight: 700;
    color: #e67e22;
}

.cta-section {
    background-color: #e67e22;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    color: #e67e22;
    background-color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.about-intro {
    background-color: #ffffff;
}

.about-text-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text-block p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.values-section {
    background-color: #f8f9fa;
}

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

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

.value-item {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 30px;
    border-left: 4px solid #e67e22;
}

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

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

.team-section {
    background-color: #ffffff;
}

.team-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-text p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.8;
    color: #555;
}

.team-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

.stats-section {
    background-color: #34495e;
    color: #ecf0f1;
}

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

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

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 17px;
    color: #bdc3c7;
}

.approach-section {
    background-color: #ecf0f1;
}

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

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step-item {
    flex: 1;
    min-width: 250px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 15px;
}

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

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

.contact-info-section {
    background-color: #ffffff;
}

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

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

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

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #e67e22;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #bdc3c7;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.faq-section {
    background-color: #f8f9fa;
}

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

.faq-list {
    max-width: 900px;
}

.faq-item {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #e67e22;
}

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

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

.coverage-section {
    background-color: #ffffff;
}

.coverage-section h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.coverage-section p {
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 1.7;
    color: #555;
}

.coverage-list {
    margin-left: 30px;
    margin-bottom: 25px;
}

.coverage-list li {
    font-size: 17px;
    padding: 8px 0;
    color: #555;
}

.thanks-section {
    background-color: #ecf0f1;
    min-height: 60vh;
}

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

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

.thanks-content > p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #555;
}

.thanks-info {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.thanks-info ul {
    list-style: none;
}

.thanks-info ul li {
    padding: 10px 0;
    font-size: 16px;
    color: #555;
    border-bottom: 1px solid #ecf0f1;
}

.thanks-service {
    margin-bottom: 30px;
    font-size: 17px;
    color: #2c3e50;
}

.back-btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    background-color: #e67e22;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.back-btn:hover {
    background-color: #d35400;
}

.legal-page {
    background-color: #ffffff;
}

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

.legal-page h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #555;
}

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

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

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

    .team-content {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .approach-steps {
        flex-direction: column;
    }
}