/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #f4a259;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white: #ffffff;
    --border-color: #dee2e6;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* ==========================================================================
   Container & Layout
   ========================================================================== */

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

/* ==========================================================================
   Navigation
   ========================================================================== */

.main-nav {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

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

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

/* ==========================================================================
   Hero Section - Split Screen
   ========================================================================== */

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    min-height: 500px;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Split Sections
   ========================================================================== */

.split-section {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

.split-content {
    flex: 1;
    padding: 3rem;
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.split-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--gray-color);
}

.split-visual {
    flex: 1;
    min-height: 400px;
}

.split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-list {
    margin: 1.5rem 0;
}

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.insight-box {
    background: var(--light-color);
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 4px solid var(--secondary-color);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: #234d24;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

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

.btn-accent:hover {
    background: #e89347;
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-preview {
    padding: 5rem 0;
    background: var(--light-color);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border: 2px solid var(--secondary-color);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.cta-center {
    text-align: center;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials-section {
    padding: 5rem 0;
}

.testimonials-split {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.testimonial {
    flex: 1;
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 10px;
    position: relative;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: var(--gray-color);
    font-size: 0.95rem;
}

/* ==========================================================================
   Process Section
   ========================================================================== */

.process-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.process-steps {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem 1rem;
}

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

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.step p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ==========================================================================
   Form Section
   ========================================================================== */

.form-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.main-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

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

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

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

/* ==========================================================================
   Cookie Banner
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* ==========================================================================
   Sticky CTA
   ========================================================================== */

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

.sticky-cta.show {
    display: block;
}

/* ==========================================================================
   Page Header
   ========================================================================== */

.page-header {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* ==========================================================================
   Services Detail Page
   ========================================================================== */

.services-detail {
    padding: 4rem 0;
}

.service-detail-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.service-detail-header {
    margin-bottom: 2rem;
}

.service-detail-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-title h2 {
    font-size: 2rem;
    color: var(--dark-color);
}

.price-tag {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.service-subtitle {
    color: var(--gray-color);
    font-size: 1.1rem;
    line-height: 1.7;
}

.service-detail-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.service-includes,
.service-pricing-tiers {
    flex: 1;
    min-width: 300px;
}

.service-includes h3,
.service-pricing-tiers h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.checklist {
    list-style: none;
}

.checklist li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--light-color);
    border-radius: 5px;
}

.tier-name {
    font-weight: 500;
}

.tier-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.service-cta {
    text-align: center;
}

/* ==========================================================================
   Pricing Info
   ========================================================================== */

.pricing-info {
    padding: 4rem 0;
    background: var(--light-color);
}

.info-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-card p {
    color: var(--gray-color);
    line-height: 1.7;
}

/* ==========================================================================
   About Page - Values & Team
   ========================================================================== */

.values-section {
    padding: 5rem 0;
}

.values-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem 1rem;
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.team-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.team-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

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

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--gray-color);
    line-height: 1.7;
}

.why-section {
    padding: 5rem 0;
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-list {
    margin-top: 3rem;
}

.why-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.why-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
    opacity: 0.3;
    min-width: 80px;
}

.why-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.why-text p {
    color: var(--gray-color);
    line-height: 1.7;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info,
.contact-map {
    flex: 1;
    min-width: 350px;
}

.contact-info h2,
.contact-map h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

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

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

.contact-item a {
    color: var(--primary-color);
}

.note {
    font-size: 0.9rem;
    font-style: italic;
}

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

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

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 5px;
}

.additional-info {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
}

.additional-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.additional-info ul li {
    padding: 0.5rem 0;
    color: var(--gray-color);
}

.faq-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--gray-color);
    line-height: 1.7;
}

/* ==========================================================================
   Thanks Page
   ========================================================================== */

.thanks-section {
    padding: 5rem 0;
    text-align: center;
}

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

.thanks-icon {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-info {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.what-next {
    margin: 4rem 0;
}

.what-next h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.next-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

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

.step-content p {
    color: var(--gray-color);
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-reminder {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
}

.contact-reminder p {
    margin-bottom: 0.5rem;
    color: var(--gray-color);
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */

.legal-content {
    padding: 4rem 0;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.last-updated {
    color: var(--gray-color);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--dark-color);
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--gray-color);
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--gray-color);
}

.legal-section ul li {
    list-style: disc;
}

.legal-section ol li {
    list-style: decimal;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--white);
    box-shadow: var(--shadow);
}

.gdpr-table th,
.gdpr-table td,
.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.gdpr-table th,
.cookies-table th {
    background: var(--light-color);
    font-weight: 600;
    color: var(--dark-color);
}

.gdpr-table td,
.cookies-table td {
    color: var(--gray-color);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 968px) {
    .hero-split,
    .split-section,
    .testimonials-split,
    .form-row {
        flex-direction: column;
    }

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

    .hero-content,
    .split-content {
        padding: 2rem 1rem;
    }

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

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

    .services-grid,
    .process-steps,
    .values-grid,
    .team-grid {
        flex-direction: column;
    }

    .service-card,
    .step,
    .value-card,
    .team-member {
        min-width: 100%;
    }

    .why-item {
        flex-direction: column;
        gap: 1rem;
    }

    .why-number {
        font-size: 2rem;
        min-width: auto;
    }

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

    .faq-item {
        flex: 1 1 100%;
    }

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

    .gdpr-table,
    .cookies-table {
        font-size: 0.9rem;
    }

    .gdpr-table th,
    .gdpr-table td,
    .cookies-table th,
    .cookies-table td {
        padding: 0.7rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

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

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

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

    .lead {
        font-size: 1.1rem;
    }

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

    .contact-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .split-content h2 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

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

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

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