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

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

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

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

ul {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container Utilities */
.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 */
.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #555;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1a1a1a;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section - Fullscreen */
.hero-fullscreen {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #555;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    z-index: 1;
    opacity: 0.3;
}

/* CTA Buttons */
.cta-primary,
.cta-large,
.cta-urgency {
    display: inline-block;
    padding: 18px 40px;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
}

.cta-primary:hover,
.cta-large:hover,
.cta-urgency:hover {
    background: transparent;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.cta-large {
    padding: 22px 50px;
    font-size: 18px;
}

/* Story & Content Sections */
.story-intro,
.insight-reveal,
.trust-building,
.benefits-visual {
    padding: 100px 20px;
}

.story-intro h2,
.insight-reveal h2,
.trust-building h2,
.benefits-visual h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.story-intro p,
.insight-reveal p {
    font-size: 19px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* Problem Amplification */
.problem-amplify {
    padding: 100px 20px;
    background: #f8f9fa;
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.split-text h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.problem-list {
    margin: 30px 0;
}

.problem-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.emphasis {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 30px;
    font-style: italic;
}

.split-visual {
    width: 100%;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
}

/* Insight Grid */
.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.insight-card {
    padding: 40px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.insight-card:hover {
    border-color: #1a1a1a;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.insight-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Visual Storytelling */
.visual-storytelling {
    padding: 0;
}

.asymmetric-layout {
    display: flex;
    flex-direction: column;
}

.content-block-left {
    padding: 80px 40px;
    background: #1a1a1a;
    color: #ffffff;
}

.content-block-left h2 {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 20px;
}

.content-block-left p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
}

.image-block-right {
    height: 500px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Testimonials */
.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.testimonial {
    padding: 40px;
    background: #f8f9fa;
    border-left: 4px solid #1a1a1a;
    border-radius: 8px;
}

.quote {
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 15px;
}

.author {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

/* Benefits Asymmetric */
.benefits-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.benefit-large,
.benefit-small {
    padding: 50px 40px;
    border-radius: 12px;
    background: #f8f9fa;
}

.benefit-large {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border: 2px solid #667eea;
}

.benefit-large h3,
.benefit-small h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-large p,
.benefit-small p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #667eea;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Services Pricing */
.services-pricing {
    padding: 100px 20px;
    background: #ffffff;
}

.services-intro {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
}

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

.service-card {
    padding: 40px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #1a1a1a;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea08 0%, #764ba208 100%);
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #667eea;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-header {
    margin-bottom: 25px;
}

.service-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
}

.service-features {
    margin-bottom: 30px;
}

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.btn-select {
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #333;
    transform: translateY(-2px);
}

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

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.order-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    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: #667eea;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-submit:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Urgency Section */
.urgency-section {
    padding: 80px 20px;
}

.urgency-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 50px;
    text-align: center;
}

.urgency-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.urgency-box p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.urgency-box strong {
    color: #d9534f;
    font-weight: 700;
}

/* Final CTA */
.final-cta {
    padding: 120px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.final-cta h2 {
    font-size: clamp(36px, 5vw, 52px);
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.final-cta .cta-large {
    background: #ffffff;
    color: #667eea;
    border-color: #ffffff;
}

.final-cta .cta-large:hover {
    background: transparent;
    color: #ffffff;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    color: #aaa;
    line-height: 1.7;
}

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

.footer-col ul li a {
    color: #aaa;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 16px 30px;
    background: #667eea;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 15px;
    color: #555;
}

.cookie-content a {
    color: #667eea;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: #e0e0e0;
    color: #333;
}

.btn-reject:hover {
    background: #ccc;
}

/* Page Hero (for subpages) */
.page-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-lead {
    font-size: clamp(18px, 2.5vw, 22px);
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* About Page Sections */
.about-story,
.about-team,
.about-cta {
    padding: 100px 20px;
}

.about-mission {
    padding: 100px 20px;
    background: #f8f9fa;
}

.about-values {
    padding: 100px 20px;
}

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

.value-card {
    padding: 40px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.about-cta {
    text-align: center;
    background: #1a1a1a;
    color: #ffffff;
}

.about-cta h2 {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.about-cta .cta-primary {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

.about-cta .cta-primary:hover {
    background: transparent;
    color: #ffffff;
}

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

.service-detail-card {
    margin-bottom: 50px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-card.featured-service {
    border-color: #667eea;
    position: relative;
}

.service-detail-header {
    padding: 40px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 32px;
    font-weight: 700;
    flex: 1;
}

.price-large {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
}

.service-detail-body {
    padding: 40px;
}

.service-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.service-detail-body h3 {
    font-size: 22px;
    margin: 30px 0 20px;
    font-weight: 700;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.btn-service {
    display: inline-block;
    padding: 16px 40px;
    background: #667eea;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-service:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

/* Services Process */
.services-process {
    padding: 100px 20px;
    background: #f8f9fa;
}

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

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #667eea;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.process-step p {
    font-size: 16px;
    color: #666;
}

.services-cta {
    padding: 100px 20px;
    text-align: center;
}

/* Contact Page */
.contact-info {
    padding: 80px 20px;
}

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

.contact-detail {
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
}

.contact-detail h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.contact-detail a {
    color: #667eea;
    text-decoration: underline;
}

.contact-address {
    line-height: 1.8;
}

.note {
    font-size: 14px;
    color: #888;
    margin-top: 15px;
    font-style: italic;
}

.contact-cta {
    padding: 100px 20px;
    background: #f8f9fa;
    text-align: center;
}

/* Thanks Page */
.thanks-hero {
    padding: 150px 20px 100px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
}

.service-confirm {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 18px;
    font-weight: 600;
    color: #667eea;
}

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

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 16px;
    color: #666;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #1a1a1a;
    color: #ffffff;
}

.btn-primary:hover {
    background: #333;
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: #ffffff;
}

/* Legal Pages */
.legal-page {
    padding: 150px 20px 100px;
}

.legal-page h1 {
    font-size: clamp(36px, 4vw, 48px);
    margin-bottom: 10px;
    font-weight: 700;
}

.update-date {
    font-size: 16px;
    color: #888;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

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

.legal-page ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 16px;
    color: #555;
    list-style: disc;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .split-content {
        flex-direction: row;
        align-items: center;
    }

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

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

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

    .asymmetric-layout {
        flex-direction: row;
    }

    .content-block-left {
        flex: 1;
    }

    .image-block-right {
        flex: 1;
    }

    .testimonials-flow {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1 1 calc(50% - 20px);
    }

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

    .benefit-large {
        flex: 1 1 100%;
    }

    .benefit-small {
        flex: 1 1 calc(50% - 15px);
    }

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

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

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

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

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

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

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

    .contact-detail {
        flex: 1;
    }

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

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .insight-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .services-grid {
        flex-wrap: nowrap;
    }

    .service-card {
        flex: 1;
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1;
    }

    .process-steps {
        flex-direction: row;
    }

    .process-step {
        flex: 1;
    }
}
