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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5f8a;
}

ul {
    list-style: none;
}

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

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

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

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

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    border-bottom: 1px solid #ecf0f1;
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
    color: #2c3e50;
    font-weight: 500;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #2980b9;
    background: #f8f9fa;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-block {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-text-column h1 {
    font-size: 2rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 1.1rem;
    color: #566573;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #2980b9;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1a5f8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41,128,185,0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 28px;
    background: transparent;
    color: #2980b9;
    border: 2px solid #2980b9;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2980b9;
    color: #ffffff;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2980b9;
}

.stat-label {
    font-size: 0.9rem;
    color: #566573;
}

.hero-image-column {
    width: 100%;
}

.hero-image-column img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.trust-strip {
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 20px;
    text-align: center;
}

.trust-strip p {
    font-size: 1rem;
    margin: 0;
}

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

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

.problem-card {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.problem-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.problem-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: #2c3e50;
}

.problem-card p {
    padding: 0 20px 20px;
    color: #566573;
}

.services-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-intro-offset {
    margin-bottom: 50px;
}

.section-intro-offset h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-intro-offset p {
    color: #566573;
    font-size: 1.1rem;
}

.services-list-stacked {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.service-row {
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.service-row:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.service-info h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-info p {
    color: #566573;
    line-height: 1.6;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
}

.cta-centered {
    text-align: center;
    margin-top: 30px;
}

.why-us-asymmetric {
    padding: 80px 0;
    background: #ffffff;
}

.asymmetric-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-block-left h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.content-block-left p {
    color: #566573;
    font-size: 1.05rem;
    line-height: 1.7;
}

.features-block-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.feature-text p {
    color: #566573;
}

.testimonials-flow {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.testimonial-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 4px solid #2980b9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial-text {
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    color: #566573;
    font-size: 0.95rem;
}

.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.form-wrapper-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-intro {
    color: #ffffff;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-benefits li {
    padding-left: 25px;
    position: relative;
    color: #ffffff;
    opacity: 0.9;
}

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

.form-container {
    background: #ffffff;
    border-radius: 8px;
    padding: 35px 25px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    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: #2980b9;
}

.btn-submit {
    padding: 16px 32px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39,174,96,0.3);
}

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

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

.coverage-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.coverage-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.coverage-item h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.coverage-item p {
    color: #566573;
}

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

.final-cta h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.1rem;
    color: #566573;
    margin-bottom: 30px;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column p,
.footer-column a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px 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;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1500;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-btn {
    display: block;
    padding: 16px 28px;
    background: #27ae60;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(39,174,96,0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #229954;
    transform: scale(1.05);
}

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

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.page-header .lead {
    font-size: 1.1rem;
    opacity: 0.9;
}

.services-detailed {
    padding: 60px 0;
    background: #f8f9fa;
}

.service-detail-block {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.service-detail-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.service-detail-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-detail-title h2 {
    font-size: 1.6rem;
    color: #2c3e50;
}

.service-tag {
    display: inline-block;
    padding: 6px 12px;
    background: #e3f2fd;
    color: #2980b9;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    width: fit-content;
}

.service-detail-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-from {
    font-size: 0.85rem;
    color: #7f8c8d;
    text-transform: uppercase;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.service-detail-content h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 25px 0 15px;
}

.service-detail-content p {
    color: #566573;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.service-list li {
    padding-left: 25px;
    position: relative;
    color: #566573;
}

.service-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2980b9;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-pricing-table {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 20px;
    margin-top: 25px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row span:first-child {
    color: #2c3e50;
    flex: 1;
}

.pricing-row span:last-child {
    font-weight: 700;
    color: #27ae60;
    white-space: nowrap;
    margin-left: 15px;
}

.service-guarantee {
    padding: 60px 0;
    background: #ffffff;
}

.service-guarantee h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

.guarantee-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.guarantee-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.guarantee-item h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.guarantee-item p {
    color: #566573;
}

.cta-section-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #2980b9 0%, #1a5f8a 100%);
    text-align: center;
}

.cta-section-services h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-section-services p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

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

.story-block {
    margin-bottom: 40px;
}

.story-block h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.story-block p {
    color: #566573;
    line-height: 1.8;
    margin-bottom: 20px;
}

.image-block {
    width: 100%;
}

.image-block img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.value-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-card p {
    color: #566573;
    line-height: 1.7;
}

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

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

.section-intro {
    text-align: center;
    color: #566573;
    font-size: 1.05rem;
    margin-bottom: 50px;
}

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

.team-member {
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: #e0e0e0;
}

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

.team-member h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.member-role {
    color: #2980b9;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: #566573;
    line-height: 1.6;
}

.numbers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.numbers-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 50px;
}

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

.number-item {
    text-align: center;
    color: #ffffff;
    flex: 1;
    min-width: 200px;
}

.number-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3498db;
}

.number-label {
    font-size: 1rem;
    opacity: 0.9;
}

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

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

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

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2980b9;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.step-content p {
    color: #566573;
    line-height: 1.6;
}

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

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

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reason-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.reason-icon {
    font-size: 2rem;
    color: #27ae60;
    flex-shrink: 0;
}

.reason-text h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.reason-text p {
    color: #566573;
    line-height: 1.6;
}

.cta-about {
    padding: 80px 0;
    background: linear-gradient(135deg, #2980b9 0%, #1a5f8a 100%);
    text-align: center;
}

.cta-about h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.contact-main {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-details p {
    color: #566573;
    line-height: 1.7;
}

.contact-details a {
    color: #2980b9;
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 8px;
}

.service-areas {
    background: #e8f5e9;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.service-areas h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-areas ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-areas li {
    color: #566573;
    padding-left: 20px;
    position: relative;
}

.service-areas li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #27ae60;
}

.contact-map-placeholder {
    width: 100%;
}

.map-box {
    width: 100%;
    height: 400px;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.map-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-faq {
    padding: 60px 0;
    background: #ffffff;
}

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

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

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

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

.faq-item p {
    color: #566573;
    line-height: 1.7;
}

.emergency-note {
    padding: 60px 0;
    background: #f8f9fa;
}

.emergency-box {
    background: #fff3cd;
    border-left: 4px solid #f39c12;
    padding: 30px;
    border-radius: 8px;
}

.emergency-box h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.emergency-box p {
    color: #566573;
    line-height: 1.7;
}

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

.thanks-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.thanks-box h1 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.thanks-lead {
    font-size: 1.1rem;
    color: #566573;
    margin-bottom: 40px;
}

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

.thanks-details h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.thanks-steps {
    list-style: decimal;
    padding-left: 25px;
}

.thanks-steps li {
    color: #566573;
    line-height: 1.8;
    margin-bottom: 12px;
}

.selected-service {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.selected-service h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2980b9;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.thanks-contact {
    font-size: 0.95rem;
    color: #566573;
}

.thanks-contact a {
    color: #2980b9;
    font-weight: 600;
}

.next-steps-info {
    padding: 60px 0;
    background: #ffffff;
}

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

.preparation-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.prep-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.prep-item h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 12px;
}

.prep-item p {
    color: #566573;
    line-height: 1.7;
}

.legal-page {
    padding: 60px 0;
    background: #f8f9fa;
}

.legal-intro {
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.legal-section {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.legal-section h2 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 25px 0 15px;
}

.legal-section p {
    color: #566573;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
}

.legal-section li {
    color: #566573;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.legal-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2980b9;
    font-weight: 700;
}

.legal-section a {
    color: #2980b9;
    text-decoration: underline;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.legal-links a {
    display: inline-block;
    padding: 12px 24px;
    background: #2980b9;
    color: #ffffff;
    border-radius: 6px;
    text-align: center;
    transition: background 0.3s ease;
}

.legal-links a:hover {
    background: #1a5f8a;
}

.cookie-table {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.cookie-row {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.cookie-name {
    font-family: monospace;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.cookie-desc {
    color: #566573;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        background: transparent;
        box-shadow: none;
        gap: 30px;
    }

    .nav-menu li {
        border-bottom: none;
    }

    .nav-menu a {
        padding: 10px 0;
    }

    .hamburger {
        display: none;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
    }

    .hero-text-column,
    .hero-image-column {
        width: 50%;
    }

    .hero-text-column h1 {
        font-size: 2.8rem;
    }

    .problem-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .problem-card {
        width: calc(50% - 15px);
    }

    .service-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .service-info {
        flex: 1;
    }

    .service-price {
        align-items: flex-end;
        text-align: right;
    }

    .asymmetric-layout {
        flex-direction: row;
    }

    .content-block-left {
        width: 40%;
    }

    .features-block-right {
        width: 60%;
    }

    .form-wrapper-split {
        flex-direction: row;
    }

    .form-intro,
    .form-container {
        width: 50%;
    }

    .coverage-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .coverage-item {
        width: calc(50% - 12.5px);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        width: 30%;
    }

    .service-detail-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .service-detail-price {
        align-items: flex-end;
        text-align: right;
    }

    .guarantee-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .guarantee-item {
        width: calc(50% - 12.5px);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        width: calc(50% - 12.5px);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        width: calc(50% - 15px);
    }

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

    .contact-info-block {
        width: 50%;
    }

    .contact-map-placeholder {
        width: 50%;
    }

    .preparation-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .prep-item {
        width: calc(50% - 12.5px);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-text-column h1 {
        font-size: 3.2rem;
    }

    .problem-grid {
        flex-wrap: nowrap;
    }

    .problem-card {
        width: calc(33.333% - 20px);
    }

    .coverage-grid {
        flex-wrap: nowrap;
    }

    .coverage-item {
        width: calc(25% - 18.75px);
    }

    .guarantee-grid {
        flex-wrap: nowrap;
    }

    .guarantee-item {
        width: calc(25% - 18.75px);
    }

    .preparation-grid {
        flex-wrap: nowrap;
    }

    .prep-item {
        width: calc(25% - 18.75px);
    }

    .team-grid {
        flex-wrap: nowrap;
    }

    .team-member {
        width: calc(25% - 22.5px);
    }
}