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

:root {
    --primary: #4a3f6b;
    --secondary: #7c6aa0;
    --accent: #d4a373;
    --dark: #1a1625;
    --light: #f8f6f3;
    --muted: #9d8fb0;
    --success: #6b8e6b;
    --warning: #d4a373;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--light);
}

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

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

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 22, 37, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

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

nav .logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

nav .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav .nav-links a:hover {
    color: var(--accent);
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--light);
    transition: all 0.3s;
}

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

.hero-funnel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(212, 163, 115, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

.hero-text .hook {
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 3.2rem;
    color: var(--light);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text .subhead {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #e5b88a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 163, 115, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    cursor: pointer;
}

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

.btn-ghost {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

.section-problem .inner {
    display: flex;
    gap: 80px;
    align-items: center;
}

.section-problem .text-block {
    flex: 1;
}

.section-problem .visual-block {
    flex: 1;
}

.section-problem h2 {
    font-size: 2.4rem;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.section-problem p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 30px;
    border-radius: 15px;
    color: var(--light);
}

.highlight-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.section-story {
    padding: 120px 0;
    background: var(--dark);
    color: var(--light);
}

.story-flow {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.story-block {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-block .story-visual {
    flex: 1;
}

.story-block .story-visual img {
    width: 100%;
    border-radius: 15px;
    opacity: 0.9;
}

.story-block .story-text {
    flex: 1;
}

.story-block .story-text .label {
    font-size: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.story-block .story-text h3 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.story-block .story-text p {
    color: var(--muted);
    font-size: 1.05rem;
}

.section-insight {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light) 0%, #ede8e1 100%);
}

.insight-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.insight-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.insight-card:hover {
    transform: translateY(-5px);
}

.insight-card .icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.insight-card .icon svg {
    width: 28px;
    height: 28px;
    fill: var(--light);
}

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

.insight-card p {
    color: #666;
    font-size: 0.95rem;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
}

.section-title.light h2 {
    color: var(--light);
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle.light {
    color: var(--muted);
}

.section-trust {
    padding: 100px 0;
    background: var(--primary);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 50px;
}

.trust-item {
    text-align: center;
}

.trust-item .number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.trust-item .label {
    font-size: 1rem;
    color: var(--light);
    margin-top: 10px;
    opacity: 0.9;
}

.section-testimonials {
    padding: 100px 0;
    background: var(--light);
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.testimonial-card.offset {
    margin-left: 100px;
}

.testimonial-card .avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--secondary);
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card .content blockquote {
    font-size: 1.1rem;
    color: #444;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-card .content .author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-card .content .role {
    font-size: 0.9rem;
    color: #888;
}

.section-benefits {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #2a2440 100%);
}

.benefits-wrap {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

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

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-item .check {
    width: 30px;
    height: 30px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-item .check svg {
    width: 14px;
    height: 14px;
    fill: var(--dark);
}

.benefit-item .text h4 {
    color: var(--light);
    font-size: 1.15rem;
    margin-bottom: 5px;
}

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

.benefits-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-visual img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.section-services {
    padding: 100px 0;
    background: var(--light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card .card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .card-image svg {
    width: 60px;
    height: 60px;
    fill: var(--light);
    opacity: 0.9;
}

.service-card .card-body {
    padding: 30px;
}

.service-card .card-body h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card .card-body p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-card .card-body .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.service-card .card-body .price span {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
}

.section-urgency {
    padding: 80px 0;
    background: var(--accent);
}

.urgency-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.urgency-text h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.urgency-text p {
    color: #5a4a3a;
    font-size: 1.1rem;
}

.section-form {
    padding: 120px 0;
    background: linear-gradient(180deg, #ede8e1 0%, var(--light) 100%);
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2.4rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.form-info p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.form-info .checklist {
    list-style: none;
}

.form-info .checklist li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #444;
}

.form-info .checklist li svg {
    width: 20px;
    height: 20px;
    fill: var(--success);
}

.form-container {
    flex: 1;
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

.section-faq {
    padding: 100px 0;
    background: var(--dark);
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 25px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--light);
    font-weight: 500;
}

.faq-question .toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.faq-question .toggle svg {
    width: 12px;
    height: 12px;
    fill: var(--light);
    transition: transform 0.3s;
}

.faq-item.active .faq-question .toggle {
    background: var(--accent);
}

.faq-item.active .faq-question .toggle svg {
    transform: rotate(180deg);
    fill: var(--dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 25px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

footer {
    background: var(--dark);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-col {
    flex: 1;
}

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

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

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

.footer-col ul li a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-col p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-brand {
    flex: 1.5;
}

.footer-brand .logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 15px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-bottom .legal-links {
    display: flex;
    gap: 25px;
}

.footer-bottom .legal-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-bottom .legal-links a:hover {
    color: var(--accent);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--dark);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(212, 163, 115, 0.4);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 163, 115, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-inner p {
    color: var(--muted);
    font-size: 0.95rem;
}

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

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

.cookie-btn {
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: var(--accent);
    color: var(--dark);
}

.cookie-btn.reject {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--muted);
}

.cookie-btn:hover {
    opacity: 0.9;
}

.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--light);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--muted);
    font-size: 1.15rem;
}

.page-content {
    padding: 80px 0;
}

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

.page-content h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin: 30px 0 15px;
}

.page-content p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.page-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content ul li {
    color: #555;
    margin-bottom: 10px;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    text-align: center;
    padding: 40px 20px;
}

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

.thanks-content .icon {
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content .icon svg {
    width: 50px;
    height: 50px;
    fill: var(--dark);
}

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

.thanks-content p {
    color: var(--muted);
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.thanks-content .selected-service {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.thanks-content .selected-service span {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 600;
}

.thanks-content .back-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-size: 1rem;
    margin-top: 20px;
    transition: opacity 0.3s;
}

.thanks-content .back-link:hover {
    opacity: 0.8;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.contact-item {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-item .icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-item .icon svg {
    width: 28px;
    height: 28px;
    fill: var(--light);
}

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

.contact-item p {
    color: #666;
    font-size: 1rem;
}

.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-intro .text {
    flex: 1;
}

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

.about-intro .image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-values {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    flex: 1;
    padding: 40px;
    background: var(--primary);
    border-radius: 20px;
    color: var(--light);
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.service-row {
    display: flex;
    gap: 30px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-row .image {
    flex: 0 0 300px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-row .image svg {
    width: 80px;
    height: 80px;
    fill: var(--light);
    opacity: 0.9;
}

.service-row .content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-row .content h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-row .content p {
    color: #666;
    margin-bottom: 20px;
}

.service-row .content .price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.service-row .content .price-tag span {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text .subhead {
        margin: 0 auto 35px;
    }

    .hero-image {
        order: -1;
    }

    .section-problem .inner {
        flex-direction: column;
    }

    .story-block,
    .story-block.reverse {
        flex-direction: column;
    }

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

    .trust-items {
        flex-wrap: wrap;
        gap: 40px;
    }

    .testimonial-card.offset {
        margin-left: 0;
    }

    .benefits-wrap {
        flex-direction: column;
    }

    .form-wrapper {
        flex-direction: column;
    }

    .urgency-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 45%;
    }

    .about-intro {
        flex-direction: column;
    }

    .about-values {
        flex-direction: column;
    }

    .contact-info-grid {
        flex-direction: column;
    }

    .service-row {
        flex-direction: column;
    }

    .service-row .image {
        flex: 0 0 200px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

    .service-card {
        flex: 1 1 100%;
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

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