:root {
    --primary-color: #1a5490;
    --primary-dark: #0f3d6e;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dfe6e9;
    --success-color: #2ecc71;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-position: inside;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 15px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

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

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

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

.nav-main {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    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;
    height: 75px;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

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

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

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

.hero-block {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1504868584819-f8e8b4b6d7e3?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 20px;
}

.hero-text-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-hero {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent-color);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-hero:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.intro-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.intro-left h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.intro-left p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 18px;
}

.intro-right {
    width: 100%;
}

.intro-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

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

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

.value-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.value-header-centered h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
}

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

.value-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

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

.image-statement {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.statement-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.statement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.statement-quote {
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-align: center;
    max-width: 800px;
    line-height: 1.5;
    font-style: italic;
}

.case-showcase {
    padding: 100px 20px;
    background: white;
}

.case-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.case-heading {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.case-intro {
    text-align: center;
    font-size: 19px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-selection {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 60px;
}

.service-option {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.service-option:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.service-option.selected {
    border-color: var(--accent-color);
    background: #fff8f0;
}

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

.service-option h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.btn-select-service {
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.form-container {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--accent-color);
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.form-subtitle span {
    color: var(--accent-color);
    font-weight: 700;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit-form {
    padding: 16px 40px;
    background: var(--accent-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-form:hover {
    background: #d35400;
    transform: translateY(-2px);
}

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

.trust-container {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-container h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.testimonial-item {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-color);
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
}

.numbers-impact {
    padding: 80px 20px;
    background: var(--primary-dark);
}

.numbers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.number-block {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.number-value {
    font-size: 56px;
    font-weight: 900;
    display: block;
}

.number-label {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}

.final-push {
    padding: 100px 20px;
    background: var(--bg-white);
}

.final-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

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

.final-content h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.final-content p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-final {
    display: inline-block;
    padding: 20px 50px;
    background: var(--accent-color);
    color: white;
    font-size: 19px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-final:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    display: block;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: white;
    text-decoration: underline;
}

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

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

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

.sticky-cta.show {
    display: block;
    animation: slideInRight 0.5s ease;
}

.sticky-cta-link {
    display: block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

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

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.page-header {
    background: var(--primary-dark);
    padding: 80px 20px;
    text-align: center;
}

.page-header-content h1 {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
}

.page-header-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
}

.about-story {
    padding: 90px 20px;
    background: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-text-block h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 18px;
}

.about-image-block img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.values-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.values-wrapper h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

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

.team-overview {
    padding: 90px 20px;
    background: white;
}

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

.team-container h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.team-intro {
    text-align: center;
    font-size: 19px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

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

.team-member {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}

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

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

.member-role {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

.approach-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-wrapper h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

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

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    font-size: 24px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.why-us-cta {
    padding: 90px 20px;
    background: white;
}

.why-us-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-us-container h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.why-us-container p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 35px;
}

.cta-about {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-about:hover {
    background: #d35400;
    transform: translateY(-3px);
}

.services-detailed {
    padding: 60px 20px 90px;
    background: var(--bg-white);
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-header {
    background: var(--primary-color);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.service-header h2 {
    font-size: 30px;
    font-weight: 800;
    color: white;
    margin: 0;
}

.service-price-tag {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 24px;
    font-weight: 800;
}

.service-body {
    padding: 40px;
}

.service-summary {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 500;
}

.service-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-body p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-includes {
    margin: 20px 0 25px 20px;
}

.service-includes li {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 8px;
}

.btn-service-cta {
    display: inline-block;
    padding: 16px 38px;
    background: var(--accent-color);
    color: white;
    font-size: 17px;
    font-weight: 700;
    border-radius: 8px;
    margin-top: 25px;
    transition: all 0.3s ease;
}

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

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

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.faq-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

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

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

.services-cta-final {
    padding: 90px 20px;
    background: var(--primary-dark);
}

.cta-final-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-final-wrapper h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-final-wrapper p {
    font-size: 19px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}

.btn-cta-large {
    display: inline-block;
    padding: 20px 50px;
    background: var(--accent-color);
    color: white;
    font-size: 19px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: #d35400;
    transform: translateY(-3px);
}

.contact-main {
    padding: 60px 20px 90px;
    background: white;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info-side h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

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

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

.contact-block a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.contact-note {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 8px;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    padding: 20px;
    color: white;
}

.map-overlay p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.contact-cta-box {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
}

.contact-cta-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-cta-box p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.btn-contact-cta {
    display: inline-block;
    padding: 16px 35px;
    background: var(--accent-color);
    color: white;
    font-size: 17px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

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

.directions-container {
    max-width: 1100px;
    margin: 0 auto;
}

.directions-container h2 {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.direction-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.direction-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

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

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

.thanks-container h1 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.thanks-service-info {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 50px;
    display: inline-block;
}

.thanks-service-info p {
    margin: 0;
    font-size: 18px;
    color: var(--text-dark);
}

.thanks-next-steps h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
}

.step-thanks {
    display: flex;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.step-num {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    font-size: 22px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn-thanks-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.btn-thanks-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.thanks-resources {
    padding: 90px 20px;
    background: white;
}

.resources-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.resources-container h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.resources-container > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

.resource-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.resource-card p {
    font-size: 17px;
    color: var(--text-light);
}

.legal-page {
    padding: 60px 20px 90px;
    background: var(--bg-white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-updated {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-intro {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 40px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 8px;
}

.legal-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 25px 30px;
}

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

.legal-content a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    overflow: hidden;
}

.cookies-table thead {
    background: var(--primary-color);
    color: white;
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
}

.cookies-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-dark);
}

.cookies-table tbody tr:last-child td {
    border-bottom: none;
}

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

    .nav-toggle {
        display: none;
    }

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

    .hero-title {
        font-size: 64px;
    }

    .intro-wrapper {
        flex-direction: row;
        align-items: center;
    }

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

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

    .value-card {
        flex: 0 0 calc(50% - 15px);
    }

    .services-selection {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-option {
        flex: 0 0 calc(50% - 12.5px);
    }

    .testimonials-flow {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-item {
        flex: 0 0 calc(50% - 17.5px);
    }

    .numbers-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .number-block {
        flex: 0 0 calc(50% - 20px);
    }

    .footer-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 0 0 calc(50% - 20px);
    }

    .about-container {
        flex-direction: row;
        align-items: center;
    }

    .about-text-block {
        flex: 1.2;
    }

    .about-image-block {
        flex: 1;
    }

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

    .value-item {
        flex: 0 0 calc(50% - 15px);
    }

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

    .team-member {
        flex: 0 0 calc(50% - 17.5px);
    }

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

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

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

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

    .direction-item {
        flex: 0 0 calc(50% - 15px);
    }

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

    .resource-card {
        flex: 1;
    }

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

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

@media (min-width: 1024px) {
    .value-card {
        flex: 0 0 calc(50% - 15px);
    }

    .service-option {
        flex: 0 0 calc(33.333% - 16.67px);
    }

    .testimonial-item {
        flex: 0 0 calc(33.333% - 23.33px);
    }

    .number-block {
        flex: 0 0 calc(25% - 30px);
    }

    .footer-col {
        flex: 0 0 calc(25% - 30px);
    }

    .team-member {
        flex: 0 0 calc(25% - 26.25px);
    }

    .direction-item {
        flex: 0 0 calc(33.333% - 20px);
    }
}