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

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2c8cab;
    --accent-color: #e67e22;
    --dark-bg: #1e2a38;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --border-light: #e0e0e0;
    --success: #2ecc71;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 16px;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.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: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.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.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero-section {
    display: flex;
    flex-direction: column-reverse;
    min-height: 70vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 20px;
}

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

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark-bg);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-visual {
    max-width: 900px;
    margin: 0 auto 40px;
}

.hero-visual img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cta-primary, .cta-secondary, .btn-submit {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary, .btn-submit {
    background: var(--accent-color);
    color: var(--white);
}

.cta-primary:hover, .btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.intro-block {
    padding: 90px 20px;
    background: var(--white);
}

.intro-block h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--dark-bg);
}

.intro-block p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.stats-section {
    padding: 70px 20px;
    background: var(--dark-bg);
    color: var(--white);
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

.problem-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.two-col-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.col-text {
    flex: 1;
}

.col-text h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--dark-bg);
    line-height: 1.3;
}

.col-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.col-image {
    flex: 1;
}

.col-image img {
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.check-list {
    list-style: none;
    margin: 30px 0;
}

.check-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.3rem;
}

.insight-section {
    padding: 90px 20px;
    background: var(--white);
}

.insight-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark-bg);
}

.insight-section > p {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.insight-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.insight-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--border-light);
}

.insight-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border-left: 4px solid var(--accent-color);
}

.insight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.insight-card.featured h3 {
    color: var(--white);
}

.insight-footer {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-top: 40px;
    font-style: italic;
}

.trust-section {
    padding: 90px 20px;
    background: var(--primary-color);
    color: var(--white);
}

.trust-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 60px;
    color: var(--white);
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

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

.author {
    font-size: 0.95rem;
    opacity: 0.9;
    font-style: normal;
}

.approach-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.two-col-reverse {
    display: flex;
    flex-direction: column-reverse;
    gap: 50px;
    align-items: center;
}

.approach-list {
    margin-top: 30px;
}

.approach-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 50px;
}

.approach-text h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.approach-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.services-preview {
    padding: 100px 20px;
    background: var(--white);
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

.service-card h3 {
    font-size: 1.4rem;
    padding: 25px 25px 15px;
    color: var(--dark-bg);
}

.service-card p {
    padding: 0 25px 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.price {
    display: block;
    padding: 0 25px 20px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: var(--primary-color);
}

.cta-section-mid {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.cta-section-mid h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-section-mid p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.guarantee-section {
    padding: 90px 20px;
    background: var(--light-bg);
}

.guarantee-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 60px;
    color: var(--dark-bg);
}

.guarantee-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.guarantee-item {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 280px;
    text-align: center;
}

.guarantee-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.guarantee-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.urgency-section {
    padding: 70px 20px;
    background: #fff3e0;
    border-left: 5px solid var(--accent-color);
}

.urgency-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.urgency-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.contact-form-section {
    padding: 100px 20px;
    background: var(--white);
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-light);
    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: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.main-footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 20px 30px;
}

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

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

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col p {
    line-height: 1.7;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
}

.sticky-btn {
    display: inline-block;
    padding: 18px 35px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(230, 126, 34, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

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

.cookie-content a {
    color: var(--accent-color);
}

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

.btn-accept, .btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--success);
    color: var(--white);
}

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

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background: var(--white);
    color: var(--dark-bg);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

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

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-intro {
    padding: 90px 20px;
    background: var(--white);
}

.about-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--dark-bg);
}

.about-intro p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.philosophy-section {
    padding: 90px 20px;
    background: var(--light-bg);
}

.two-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.philosophy-section h2, .philosophy-section h3 {
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.philosophy-section h2 {
    font-size: 2rem;
}

.philosophy-section h3 {
    font-size: 1.5rem;
}

.philosophy-section p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.values-section {
    padding: 90px 20px;
    background: var(--white);
}

.values-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 60px;
    color: var(--dark-bg);
}

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

.value-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 8px;
    max-width: 280px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.team-section {
    padding: 90px 20px;
    background: var(--light-bg);
}

.team-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 60px;
    color: var(--dark-bg);
}

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

.team-member {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.team-member h3 {
    font-size: 1.4rem;
    margin: 25px 20px 10px;
    color: var(--dark-bg);
}

.role {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.team-member p {
    padding: 0 20px 25px;
    color: var(--text-light);
    line-height: 1.6;
}

.certifications-section {
    padding: 90px 20px;
    background: var(--white);
}

.certifications-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-bg);
}

.cert-list {
    list-style: none;
}

.cert-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-light);
}

.cert-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.why-choose-section {
    padding: 90px 20px;
    background: var(--light-bg);
}

.why-choose-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 60px;
    color: var(--dark-bg);
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.reason-item {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    max-width: 280px;
    border-top: 4px solid var(--accent-color);
}

.reason-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.reason-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-about {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-about h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

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

.service-detail-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

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

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

.service-detail-text h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.service-tagline {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.service-detail-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-text h4 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: var(--dark-bg);
}

.service-includes {
    list-style: none;
    margin: 20px 0;
}

.service-includes li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-light);
}

.service-includes li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-note {
    background: #f0f4f8;
    padding: 20px;
    border-radius: 6px;
    font-style: italic;
    margin: 25px 0;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 30px 0;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 8px;
}

.price-label {
    font-size: 0.95rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-detail {
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-detail-image {
    flex: 1;
    max-width: 500px;
}

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.additional-services {
    padding: 80px 20px;
    background: var(--light-bg);
}

.additional-services h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--dark-bg);
}

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

.additional-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    max-width: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.additional-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark-bg);
}

.additional-item p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.additional-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-transparency {
    padding: 80px 20px;
    background: var(--white);
}

.pricing-transparency h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-bg);
}

.pricing-transparency p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin: 20px 0 15px;
    font-weight: 600;
}

.transparency-list {
    list-style: none;
    margin: 15px 0 30px 20px;
}

.transparency-list li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.transparency-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.highlight-text {
    background: #fff3e0;
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    font-weight: 600;
    color: var(--dark-bg);
    margin-top: 30px;
}

.service-cta {
    padding: 80px 20px;
    background: var(--light-bg);
    text-align: center;
}

.service-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.service-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
}

.contact-info-section {
    padding: 60px 20px;
}

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

.contact-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 8px;
    max-width: 350px;
    flex: 1;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-detail {
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-detail strong {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-bg);
}

.contact-details-extended {
    padding: 80px 20px;
    background: var(--light-bg);
}

.contact-details-extended h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--dark-bg);
}

.contact-method {
    margin-bottom: 40px;
}

.contact-method h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-method p {
    color: var(--text-light);
    line-height: 1.7;
}

.response-times {
    padding: 80px 20px;
    background: var(--white);
}

.response-times h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--dark-bg);
}

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

.response-item {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 8px;
    max-width: 300px;
    text-align: center;
}

.response-type {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.response-time {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.response-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.location-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.location-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--dark-bg);
}

.location-section p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.location-image {
    margin-top: 40px;
}

.location-image img {
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.faq-contact {
    padding: 80px 20px;
    background: var(--white);
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--dark-bg);
}

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

.faq-item {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    max-width: 280px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-cta {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.emergency-email {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 20px 0;
}

.thanks-section {
    padding: 100px 20px;
    background: var(--white);
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark-bg);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.selected-service {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--dark-bg);
}

.steps-list {
    max-width: 700px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.step-number {
    min-width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-info {
    background: #fff3e0;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin: 50px 0;
}

.thanks-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.thanks-info p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.legal-page {
    padding: 80px 20px 100px;
    background: var(--white);
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 50px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--dark-bg);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.legal-page h4 {
    font-size: 1.1rem;
    margin: 25px 0 12px;
    color: var(--dark-bg);
}

.legal-page p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
    color: var(--text-light);
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.cookie-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--dark-bg);
}

.cookie-table td {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .hero-section {
        flex-direction: row;
        align-items: center;
        padding: 100px 40px;
    }

    .hero-content {
        text-align: left;
        margin: 0;
    }

    .hero-visual {
        margin: 0;
    }

    .two-col-asymmetric,
    .two-col-reverse,
    .two-col {
        flex-direction: row;
    }

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

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

    .insight-cards {
        flex-direction: row;
    }

    .testimonial-grid {
        flex-direction: row;
    }

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

    .cookie-content p {
        text-align: left;
    }
}

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

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
}
