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

:root {
    --primary-color: #1a4d6f;
    --secondary-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 77, 111, 0.97);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: var(--secondary-color);
    color: white;
}

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

.btn-cookie-alt {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 32px;
}

.nav-right a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-right a:hover,
.nav-right a.active {
    color: var(--primary-color);
}

.nav-right a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding-right: 40px;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 800;
}

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

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

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

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

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

.content-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 80px;
    align-items: center;
}

.content-split.reverse {
    flex-direction: row-reverse;
}

.content-left,
.content-right {
    flex: 1;
}

.content-left img,
.content-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.content-right h2,
.content-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.content-right p,
.content-left p {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.8;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 100px auto;
    padding: 60px 40px;
    background: var(--bg-light);
    gap: 40px;
    justify-content: space-between;
}

.stat-card {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-white);
    border-radius: 8px;
}

.stat-card h3 {
    font-size: 52px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 800;
}

.stat-card p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.5;
}

.insight-section {
    background: var(--primary-color);
    color: white;
    padding: 80px 40px;
    margin: 100px 0;
}

.insight-container {
    max-width: 1400px;
    margin: 0 auto;
}

.insight-container h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.insight-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.insight-item {
    flex: 1;
    min-width: 280px;
}

.insight-item h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--secondary-color);
    font-weight: 600;
}

.insight-item p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
}

.testimonial-inline {
    max-width: 1000px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
}

.testimonial-inline blockquote {
    font-size: 28px;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    position: relative;
    padding: 40px;
    border-left: 5px solid var(--secondary-color);
    background: var(--bg-light);
}

.testimonial-inline cite {
    display: block;
    margin-top: 24px;
    font-size: 18px;
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.services-showcase {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.services-header p {
    font-size: 20px;
    color: var(--text-light);
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    padding: 40px 30px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #fff 0%, #fff5eb 100%);
}

.service-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.btn-service {
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section {
    background: var(--bg-light);
    padding: 100px 40px;
    margin: 100px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
}

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

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.urgency-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f3854 100%);
    color: white;
    padding: 80px 40px;
    text-align: center;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.urgency-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.7;
}

.footer-split {
    background: var(--text-dark);
    color: white;
    padding: 60px 40px 20px;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    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: var(--secondary-color);
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

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

.btn-sticky {
    display: inline-block;
    padding: 16px 28px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(230, 126, 34, 0.5);
}

.page-header {
    text-align: center;
    padding: 80px 40px 60px;
    background: var(--bg-light);
}

.page-header h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 800;
}

.page-header p {
    font-size: 20px;
    color: var(--text-light);
}

.about-hero {
    background: var(--bg-light);
}

.values-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.values-section h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

.value-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.value-item p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
}

.team-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 80px 40px;
    background: var(--bg-light);
}

.team-section h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 24px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.team-role {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.team-member p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.stats-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.stats-section h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.cta-section {
    background: var(--bg-light);
    padding: 100px 40px;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.services-detail {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    padding: 50px;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    align-items: center;
}

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

.service-detail-card.featured-service {
    background: linear-gradient(135deg, #fff 0%, #fff5eb 100%);
    border-color: var(--secondary-color);
}

.service-detail-content {
    flex: 1.2;
    position: relative;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.service-description {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    margin-top: 24px;
    font-weight: 600;
}

.service-list {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-list li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 30px;
}

.service-price-large {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
}

.process-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 80px 40px;
    background: var(--bg-light);
}

.process-section h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

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

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 40px 30px;
    background: var(--bg-white);
    border-radius: 12px;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.process-step p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-detail p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-detail a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
}

.contact-note p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.faq-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.faq-section h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

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

.faq-item {
    flex: 1;
    min-width: 350px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.thanks-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 40px;
}

.thanks-content {
    max-width: 700px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: 700;
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-confirmation {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.next-steps {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.next-steps h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

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

.step-item {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.step-item h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.step-item p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
}

.resources-section {
    background: var(--bg-light);
    padding: 80px 40px;
    margin: 100px 0;
}

.resources-section h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.resources-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 300px;
    padding: 40px 30px;
    background: var(--bg-white);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.resource-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.resource-card p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px 100px;
}

.legal-page h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 800;
}

.update-date {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-page p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.legal-page ul li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .content-split,
    .contact-split {
        flex-direction: column;
        gap: 40px;
    }

    .content-split.reverse {
        flex-direction: column;
    }

    .hero-left {
        padding-right: 0;
    }

    .services-grid-split {
        justify-content: center;
    }

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

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

    .nav-right {
        gap: 20px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

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

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

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .btn-sticky {
        padding: 12px 20px;
        font-size: 14px;
    }

    .form-container {
        padding: 40px 30px;
    }

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

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

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

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

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .services-header h2,
    .values-section h2,
    .team-section h2,
    .stats-section h2,
    .cta-content h2,
    .process-section h2,
    .faq-section h2,
    .next-steps h2,
    .resources-section h2 {
        font-size: 32px;
    }

    .legal-page h1 {
        font-size: 32px;
    }

    .service-detail-card {
        padding: 30px 20px;
    }
}