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

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

a:hover {
    color: #c0392b;
}

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

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

.container-narrow {
    max-width: 800px;
    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: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.logo:hover {
    color: #e74c3c;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #5a6c7d;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #e74c3c;
}

.cta-primary:hover {
    background: #c0392b;
    border-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #e74c3c;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #e74c3c;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #e74c3c;
    color: #ffffff;
    transform: translateY(-2px);
}

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

.intro-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-section p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.insight-split {
    display: flex;
}

.insight-left {
    flex: 1;
    overflow: hidden;
}

.insight-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-right {
    flex: 1;
    padding: 80px 60px;
    background: #ecf0f1;
}

.insight-right h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.insight-right p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.benefit-list {
    list-style: none;
    margin-bottom: 35px;
}

.benefit-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #2c3e50;
    font-size: 1.05rem;
}

.benefit-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.testimonial-section {
    padding: 80px 20px;
    background: #2c3e50;
    color: #ffffff;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: #ecf0f1;
    font-weight: 600;
}

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

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

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

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

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

.service-details p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.service-features span {
    font-size: 0.95rem;
    color: #27ae60;
    font-weight: 500;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.btn-select-service {
    background: #e74c3c;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

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

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

.form-split-left {
    flex: 1;
    padding-right: 60px;
}

.form-split-left h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-split-left p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 10px 0;
    font-size: 1.05rem;
    color: #27ae60;
    font-weight: 500;
}

.form-split-right {
    flex: 1;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #dfe6e9;
    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: #e74c3c;
}

.btn-submit {
    width: 100%;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.form-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #7f8c8d;
    text-align: center;
}

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

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

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.trust-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #e74c3c;
}

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

.cta-urgency {
    padding: 80px 20px;
    background: #e74c3c;
    color: #ffffff;
    text-align: center;
}

.cta-urgency h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-urgency p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    opacity: 0.95;
}

.cta-primary-large {
    display: inline-block;
    background: #ffffff;
    color: #e74c3c;
    padding: 18px 50px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.15rem;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.cta-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.sticky-cta-content span {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.sticky-cta-btn {
    background: #e74c3c;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #c0392b;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    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);
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 100px 20px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    padding: 80px 20px;
}

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

.content-left {
    flex: 1;
}

.content-right {
    flex: 1;
}

.content-right h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.content-right p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #e74c3c;
}

.value-card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.team-section {
    padding: 80px 20px;
}

.team-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.team-section p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

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

.process-split-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    position: relative;
    padding-top: 70px;
}

.step-number {
    position: absolute;
    top: 25px;
    left: 35px;
    width: 50px;
    height: 50px;
    background: #e74c3c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
}

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

.process-step p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.numbers-section {
    padding: 80px 20px;
    background: #2c3e50;
    color: #ffffff;
}

.numbers-section h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 50px;
}

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

.number-card {
    text-align: center;
    min-width: 200px;
}

.big-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 10px;
}

.number-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

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

.cta-section p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 30px;
}

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

.service-detail-card {
    margin-bottom: 60px;
}

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

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

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

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

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #e74c3c;
}

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

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    color: #2c3e50;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 1.5rem;
}

.service-price-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #e74c3c;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 10px;
}

.price-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin: 0;
}

.btn-service-order {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service-order:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.service-detail-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

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

.additional-services {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.additional-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.additional-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

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

.additional-card p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.additional-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
}

.faq-section {
    padding: 80px 20px;
}

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

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

.faq-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

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

.faq-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0;
}

.services-intro {
    padding: 40px 20px;
}

.services-intro p {
    font-size: 1.15rem;
    color: #5a6c7d;
    text-align: center;
}

.contact-main {
    padding: 80px 20px;
}

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

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

.contact-info-side h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-info-side > p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 40px;
}

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

.contact-detail-block h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #e74c3c;
}

.contact-detail-block p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.contact-map-side {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.9);
    color: #ffffff;
    padding: 20px;
}

.map-overlay p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.quick-contact-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.quick-contact-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.quick-contact-box p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.btn-quick-contact {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-quick-contact:hover {
    background: #c0392b;
}

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

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

.contact-options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-option-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.contact-option-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #e74c3c;
}

.contact-option-card p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 10px;
}

.contact-faq {
    padding: 80px 20px;
}

.contact-faq h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-faq > p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 35px;
}

.thanks-hero {
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.thanks-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.thanks-details {
    padding: 80px 20px;
}

.thanks-info-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.thanks-info-box h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

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

.timeline-step {
    display: flex;
    gap: 25px;
}

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

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

.step-content p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 10px;
}

.time-indicator {
    display: inline-block;
    background: #27ae60;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.thanks-service-info {
    background: #ecf0f1;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 50px;
    text-align: center;
    display: none;
}

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

.selected-service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 15px;
}

.thanks-actions h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.action-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.action-card {
    flex: 1;
    min-width: 250px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.action-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.action-card p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.btn-action {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-action:hover {
    background: #c0392b;
}

.thanks-contact {
    padding: 60px 20px;
    background: #2c3e50;
    color: #ffffff;
}

.contact-box-thanks {
    text-align: center;
}

.contact-box-thanks h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-box-thanks p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-emphasis {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 20px 0;
}

.contact-emphasis a {
    color: #e74c3c;
}

.legal-page {
    padding: 80px 20px;
}

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

.legal-intro {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #e74c3c;
}

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

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #dfe6e9;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #5a6c7d;
}

.browser-guides {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.browser-guide {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.browser-guide h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #e74c3c;
}

.browser-guide p {
    margin: 0;
    font-size: 0.95rem;
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-split,
    .insight-split,
    .split-content,
    .service-card,
    .service-detail-split,
    .contact-split-container {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

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

    .hero-left,
    .insight-right {
        padding: 50px 30px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .form-split-left {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .sticky-cta-content {
        justify-content: center;
        text-align: center;
    }

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

    .testimonial-grid,
    .trust-grid,
    .values-grid,
    .process-split-grid,
    .services-split-grid {
        flex-direction: column;
    }

    h2 {
        font-size: 1.8rem;
    }
}

@media (min-width: 769px) {
    .form-container {
        display: flex;
        gap: 60px;
    }
}
