/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    color: #2d5f3f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3a26;
}

ul {
    list-style-position: inside;
}

/* Container System */
.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;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5f3f;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2d5f3f;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    padding: 20px;
    list-style: none;
}

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

.nav-menu li {
    margin: 10px 0;
    list-style: none;
}

.nav-menu a {
    font-size: 1.1rem;
    display: block;
    padding: 10px 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2d5f3f;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1a3a26;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.cookie-link {
    color: #ffffff;
    text-decoration: underline;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    background: #d4623e;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 98, 62, 0.4);
    display: inline-block;
}

.sticky-btn:hover {
    background: #b8522f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 98, 62, 0.5);
}

/* Hero Section */
.hero-scene {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 95, 63, 0.85), rgba(44, 62, 80, 0.7));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    background: #d4623e;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #b8522f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 98, 62, 0.4);
}

/* Intro Hook */
.intro-hook {
    padding: 80px 20px;
    background: #f8f9fa;
}

.dropcap::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    float: left;
    line-height: 0.8;
    margin: 5px 10px 0 0;
    color: #2d5f3f;
}

.intro-hook p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Visual Break */
.visual-break {
    padding: 0;
}

.full-width-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Problem Section */
.problem-section {
    padding: 80px 20px;
}

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

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

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

/* Insight Reveal */
.insight-reveal {
    padding: 80px 20px;
    background: #2c3e50;
    color: #ffffff;
}

.insight-reveal h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.insight-reveal p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.centered {
    text-align: center;
}

.highlight-box {
    background: rgba(45, 95, 63, 0.3);
    padding: 25px;
    border-left: 4px solid #2d5f3f;
    margin: 30px 0;
    font-weight: 500;
}

/* Testimonials */
.testimonials-inline {
    padding: 80px 20px;
    background: #f8f9fa;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
    color: #2c3e50;
}

.testimonial-author {
    font-weight: 600;
    color: #2d5f3f;
}

/* Process Story */
.process-story {
    padding: 80px 20px;
}

.process-story h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.process-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.process-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d5f3f;
    margin-bottom: 15px;
}

.process-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.process-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 80px 20px;
}

.benefits-reveal h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 35px;
    padding-left: 0;
}

.benefits-list strong {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 10px;
    color: #2d5f3f;
}

.benefits-list p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Visual Separator */
.visual-separator {
    padding: 0;
}

/* Services and Pricing */
.services-pricing {
    padding: 80px 20px;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #555;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border: 3px solid #2d5f3f;
}

.ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    background: #d4623e;
    color: #ffffff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 20px 20px 15px;
    color: #2c3e50;
}

.service-card p {
    margin: 0 20px 15px;
    line-height: 1.6;
    color: #555;
}

.service-detail {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2d5f3f;
    margin: 20px;
}

.old-price {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.btn-service {
    display: block;
    background: #2d5f3f;
    color: #ffffff;
    text-align: center;
    padding: 15px;
    margin: 20px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #1a3a26;
    color: #ffffff;
}

.btn-service.highlight {
    background: #d4623e;
}

.btn-service.highlight:hover {
    background: #b8522f;
}

/* Urgency Block */
.urgency-block {
    padding: 60px 20px;
    background: #fff3e0;
}

.urgency-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #d4623e;
}

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

/* Guarantee Section */
.guarantee-section {
    padding: 80px 20px;
}

.guarantee-box {
    background: #e8f5e9;
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid #2d5f3f;
}

.guarantee-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.guarantee-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Order Form Section */
.order-form-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.order-form-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #555;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    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: #2d5f3f;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
}

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

.btn-submit {
    width: 100%;
    background: #2d5f3f;
    color: #ffffff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1a3a26;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 95, 63, 0.3);
}

/* Final CTA */
.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2d5f3f, #2c3e50);
    color: #ffffff;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-final {
    display: inline-block;
    background: #d4623e;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background: #b8522f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 98, 62, 0.4);
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

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

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

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

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

.footer-col a {
    color: #ffffff;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: #ffffff;
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2d5f3f, #2c3e50);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

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

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

/* Content Section */
.content-section {
    padding: 80px 20px;
}

.content-section h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: #2c3e50;
}

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

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

.content-section li {
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.values-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 20px;
}

.values-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Team Section */
.team-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.team-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.team-member {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.role {
    font-size: 1rem;
    color: #2d5f3f;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    line-height: 1.6;
    color: #555;
}

/* Services Detail */
.services-detail {
    padding: 40px 20px;
}

.service-full {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-image-large {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.price-large {
    font-size: 2rem;
    font-weight: 800;
    color: #2d5f3f;
    margin-bottom: 20px;
}

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

.service-content ul {
    margin: 25px 0;
    padding-left: 20px;
}

.service-content li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background: #2d5f3f;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-primary:hover {
    background: #1a3a26;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 95, 63, 0.3);
    color: #ffffff;
}

.btn-primary.highlight {
    background: #d4623e;
}

.btn-primary.highlight:hover {
    background: #b8522f;
}

.featured-service {
    border: 3px solid #2d5f3f;
}

/* CTA Section */
.cta-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cta-section p {
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2d5f3f;
    border: 2px solid #2d5f3f;
    padding: 12px 35px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2d5f3f;
    color: #ffffff;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2d5f3f;
}

.contact-item p {
    line-height: 1.7;
    margin-bottom: 10px;
}

.note {
    font-size: 0.95rem;
    font-style: italic;
    color: #777;
}

.map-placeholder {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    border: 2px dashed #ddd;
}

.map-placeholder p {
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Thanks Section */
.thanks-section {
    padding: 100px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.thanks-icon {
    text-align: center;
    margin-bottom: 30px;
}

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2d5f3f;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.order-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.next-steps {
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #2d5f3f;
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-note {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    margin: 30px 0;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 0;
}

.contact-help {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    text-align: center;
}

/* Legal Content */
.legal-content {
    padding: 60px 20px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: #2d5f3f;
}

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

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

.legal-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.legal-table th,
.legal-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.legal-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
}

.legal-table tr:hover {
    background: #f8f9fa;
}

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

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
        gap: 30px;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        padding: 0;
    }

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

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

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

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

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

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

    .process-item {
        flex: 1 1 calc(50% - 15px);
    }

    .service-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .service-full {
        flex-direction: row;
        align-items: center;
    }

    .service-image-large {
        flex: 0 0 45%;
        height: 400px;
    }

    .service-content {
        flex: 1;
    }

    .service-full.reverse {
        flex-direction: row-reverse;
    }

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

    .footer-col {
        flex: 1;
    }

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

    .team-member {
        flex: 1;
    }

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

    .contact-info,
    .contact-map {
        flex: 1;
    }

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

/* Responsive - Desktop */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .service-card.featured {
        flex: 1 1 calc(50% - 15px);
    }

    .process-item {
        flex: 1 1 calc(25% - 23px);
    }
}