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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #4CAF50;
    --transition: all 0.3s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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);
}

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

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

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

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

.header-minimal {
    background: var(--bg-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
    letter-spacing: -0.5px;
}

.nav-floating {
    position: relative;
}

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 0;
    min-width: 200px;
    margin-top: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--bg-light);
    color: var(--accent-color);
}

.hero-story {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95), rgba(52, 152, 219, 0.85)),
                url('https://images.unsplash.com/photo-1587825140708-dfaf72ae4b04?w=1600') center/cover;
    color: var(--bg-white);
    padding: 120px 20px 80px;
    text-align: center;
}

.hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-lead {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.story-content {
    font-size: 1.1rem;
}

.story-intro {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.story-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.problem-reveal {
    padding: 80px 20px;
}

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

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.split-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.insight-block {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--bg-white);
}

.insight-card {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.insight-card h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.insight-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.trust-building {
    padding: 80px 20px;
}

.section-title-center {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.benefit-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.benefit-icon img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.benefit-card h3 {
    padding: 20px 25px 10px;
    font-size: 1.4rem;
    color: var(--primary-color);
}

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

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

.cta-text {
    font-size: 1.2rem;
}

.cta-link {
    color: var(--secondary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
}

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

.testimonial-flow {
    padding: 80px 20px;
}

.testimonial {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
}

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

.testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
}

.scenario-building {
    padding: 80px 20px;
    background: var(--bg-white);
}

.scenario-wrapper h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.scenario-content p {
    padding: 20px;
    margin-bottom: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    line-height: 1.7;
}

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

.deep-dive h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.deep-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 15px 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 90;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-sticky.visible {
    display: flex;
}

.sticky-text {
    font-weight: 600;
    font-size: 1rem;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    text-align: center;
}

.btn-primary:hover {
    background: var(--accent-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    text-align: center;
}

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

.value-layer {
    padding: 80px 20px;
}

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

.value-item {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

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

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

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

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

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-item {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.service-item:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

.service-body {
    padding: 30px;
}

.service-body h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 25px 0;
}

.btn-service {
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    width: 100%;
}

.btn-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.urgency-soft {
    padding: 60px 20px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.urgency-content h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.urgency-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.form-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.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: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group-checkbox {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 5px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-group-checkbox label {
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 15px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.final-reassurance {
    padding: 60px 20px;
    background: var(--bg-light);
    text-align: center;
}

.final-reassurance h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.final-reassurance p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 50px 20px 20px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-col p {
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-col a {
    color: var(--bg-white);
    opacity: 0.8;
    transition: var(--transition);
}

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

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-accept:hover {
    background: #45a049;
}

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-white);
    padding: 80px 20px 60px;
    text-align: center;
}

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

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

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

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

.lead-text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.story-block h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    margin-top: 60px;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

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

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

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

.team-approach h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.approach-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

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

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

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

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

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.service-info {
    padding: 40px;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-info h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.spec-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.spec-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-price-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

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

.price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-savings {
    font-size: 1rem;
    color: var(--success-color);
    font-weight: 600;
}

.service-detail.featured {
    border: 3px solid var(--accent-color);
}

.services-help {
    padding: 60px 20px;
    background: var(--bg-light);
    text-align: center;
}

.services-help h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-content {
    padding: 60px 20px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.contact-item a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-note {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-note p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

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

.contact-map h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.map-placeholder {
    background: var(--bg-white);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed var(--border-color);
}

.map-placeholder p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.map-note {
    font-size: 0.95rem;
    color: var(--text-light);
}

.thanks-hero {
    padding: 80px 20px;
    min-height: 60vh;
}

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

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

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

.thanks-lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.thanks-message {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-message p {
    line-height: 1.7;
    margin-bottom: 15px;
}

#service-confirmation {
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next {
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps li {
    counter-increment: step-counter;
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    line-height: 1.7;
}

.next-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 15px;
    background: var(--accent-color);
    color: var(--bg-white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.thanks-contact {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.thanks-contact p {
    line-height: 1.7;
}

.thanks-contact a {
    font-weight: 600;
    color: var(--accent-color);
}

.legal-content {
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content .updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        background: none;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        min-width: 0;
        gap: 25px;
    }

    .nav-menu a {
        padding: 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-lead {
        font-size: 1.3rem;
    }

    .split-layout {
        flex-direction: row;
        align-items: center;
    }

    .split-text,
    .split-image {
        flex: 1;
    }

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

    .benefit-card {
        flex: 1;
        min-width: 280px;
    }

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

    .value-item {
        flex: 1;
    }

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

    .service-item {
        flex: 1;
        min-width: 320px;
    }

    .cookie-buttons {
        justify-content: flex-start;
    }

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

    .footer-col {
        flex: 1;
    }

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

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

    .approach-item {
        flex: 1;
    }

    .contact-grid {
        flex-direction: row;
        gap: 60px;
    }

    .contact-info,
    .contact-form-wrapper {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .services-layout .service-item {
        flex: 0 0 calc(50% - 25px);
    }
}