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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #ff6b35;
    --accent-color: #4ecdc4;
    --dark-text: #1a1a1a;
    --light-text: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-narrow-center {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    text-align: center;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

.nav-menu li a:hover {
    color: var(--secondary-color);
}

.hero-visual {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 79, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.hero-content-center {
    max-width: 900px;
    text-align: center;
    color: white;
}

.hero-title-large {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.cta-hero-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--secondary-color);
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.cta-hero-primary:hover {
    background: #ff8559;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.5);
    color: white;
}

.story-intro {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.story-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.story-text.emphasis {
    font-size: 1.5rem;
    color: var(--dark-text);
    font-weight: 600;
    margin-top: 2rem;
}

.visual-break {
    padding: 0;
    background: var(--bg-light);
}

.split-visual {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.split-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--light-text);
}

.insight-reveal {
    padding: var(--spacing-xl) 0;
    background: var(--primary-color);
    color: white;
}

.insight-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--spacing-md);
}

.insight-box h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.insight-large {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.problem-amplify {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.centered-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-text);
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--secondary-color);
}

.problem-item h4 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.problem-item p {
    color: var(--light-text);
    font-size: 1.125rem;
    margin: 0;
}

.cta-inline-section {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.cta-inline-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-inline-text {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-inline-link {
    display: inline-block;
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
    border-bottom: 2px solid white;
    transition: all 0.3s ease;
}

.cta-inline-link:hover {
    color: white;
    transform: translateX(5px);
}

.trust-builder {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.section-heading-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
}

.visual-showcase {
    padding: 0;
}

.showcase-grid {
    display: flex;
    flex-wrap: wrap;
}

.showcase-item {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    height: 400px;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
}

.showcase-overlay h3 {
    font-size: 1.75rem;
    margin: 0;
}

.approach-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.approach-steps {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.step-visual {
    flex: 1;
    text-align: center;
}

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

.step-visual h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-visual p {
    color: var(--light-text);
    font-size: 1.125rem;
}

.services-preview {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-visual {
    display: flex;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-visual:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

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

.badge-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    z-index: 10;
    font-size: 0.875rem;
}

.service-image-wrap {
    flex: 0 0 350px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.75rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.service-desc {
    color: var(--light-text);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.urgency-block {
    padding: var(--spacing-lg) 0;
    background: #fff3cd;
}

.urgency-box {
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid var(--secondary-color);
    text-align: center;
}

.urgency-box h3 {
    font-size: 1.75rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.urgency-box p {
    font-size: 1.125rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.urgency-note {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.form-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.form-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.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: flex-start;
    gap: 0.5rem;
    font-weight: 400;
}

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

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #ff8559;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.final-cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4537 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-final-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--secondary-color);
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.cta-final-button:hover {
    background: #ff8559;
    transform: translateY(-2px);
    color: white;
}

.footer {
    background: var(--dark-text);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-col p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #404040;
    color: #808080;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1rem;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing-md);
}

.sticky-cta-text {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
}

.sticky-cta-btn {
    padding: 0.75rem 2rem;
    background: var(--secondary-color);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #ff8559;
    color: white;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    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 {
    margin: 0;
    flex: 1;
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie.accept:hover {
    background: #218838;
}

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

.btn-cookie.reject:hover {
    background: white;
    color: var(--dark-text);
}

.page-hero-small {
    padding: 8rem var(--spacing-md) 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

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

.about-story {
    padding: var(--spacing-xl) 0;
}

.story-block {
    margin-bottom: 3rem;
}

.story-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.story-block p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--light-text);
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 1rem 0;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--light-text);
    border-bottom: 1px solid var(--border-color);
}

.values-list li:last-child {
    border-bottom: none;
}

.team-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

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

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

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

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

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.team-member p {
    color: var(--light-text);
    font-size: 1rem;
}

.cta-section-simple {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.btn-cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.services-detail {
    padding: var(--spacing-xl) 0;
}

.service-detail-card {
    margin-bottom: 4rem;
    display: flex;
    gap: 3rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

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

.service-detail-image {
    flex: 0 0 400px;
}

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

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

.service-tagline {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.125rem;
    color: var(--light-text);
}

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

.service-pricing-box {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    text-align: center;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.price-note {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.comparison-note {
    padding: var(--spacing-lg) 0;
    background: var(--accent-color);
    text-align: center;
    color: white;
}

.comparison-note h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
}

.comparison-note p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.contact-section {
    padding: var(--spacing-xl) 0;
}

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

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

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

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

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

.form-note {
    color: var(--light-text);
    margin-bottom: 2rem;
}

.map-placeholder {
    padding: var(--spacing-lg) 0;
    background: var(--bg-light);
}

.map-box {
    height: 400px;
    background: #e0e0e0;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-hero {
    padding: 8rem var(--spacing-md) 4rem;
    background: var(--bg-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.5rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.thanks-details {
    margin-bottom: 3rem;
    font-size: 1.125rem;
    color: var(--light-text);
}

.thanks-next-steps {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next-steps h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.steps-list {
    padding-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--light-text);
}

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

.btn-primary {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-extra-info {
    padding: var(--spacing-xl) 0;
}

.tips-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.tip-item {
    flex: 1;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.tip-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.tip-item p {
    color: var(--light-text);
    font-size: 1rem;
}

.legal-page {
    padding: 6rem var(--spacing-md) 4rem;
}

.legal-update {
    color: var(--light-text);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
}

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

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background-color: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-text);
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.modal-service-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-text);
}

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

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

    .split-visual {
        flex-direction: column;
    }

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

    .approach-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .service-card-visual {
        flex-direction: column;
    }

    .service-image-wrap {
        flex: 0 0 250px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

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

    .service-detail-image {
        flex: 0 0 300px;
    }

    .contact-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
}

@media (max-width: 640px) {
    .hero-title-large {
        font-size: 2rem;
    }

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

    .section-heading,
    .centered-heading {
        font-size: 1.75rem;
    }

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

    .showcase-item {
        min-width: 100%;
        height: 300px;
    }

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