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

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 300;
    line-height: 1.3;
    color: #1a1a1a;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    margin-top: 3rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.3rem;
}

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

a:hover {
    color: #8b7355;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    flex-direction: column;
    align-items: center;
}

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

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #8b7355;
    color: #fff;
}

.btn-accept:hover {
    background: #6d5942;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 90%;
}

.nav-brand {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-links a {
    font-size: 0.9rem;
    font-family: 'Helvetica Neue', sans-serif;
    color: #2a2a2a;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8b7355;
}

/* Hero Section with Overlay */
.hero-overlay {
    position: relative;
    height: 100vh;
    margin-top: 0;
    overflow: hidden;
}

.hero-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(139, 115, 85, 0.3));
}

.hero-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    max-width: 90%;
}

.hero-overlay-content h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #fff;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #8b7355;
    color: #fff;
}

/* Narrow Container for Editorial Style */
.narrow-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.wide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.centered-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    text-align: center;
}

/* Story Intro Section */
.story-intro {
    background: #fff;
    padding: 5rem 0;
}

.story-intro h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.story-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.inline-image {
    margin: 3rem auto;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Split Layout */
.split-layout {
    display: flex;
    flex-direction: column;
    background: #f5f1ed;
    padding: 5rem 0;
}

.split-text,
.split-image {
    flex: 1;
    padding: 2rem 1.5rem;
}

.split-text {
    order: 2;
}

.split-image {
    order: 1;
}

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

/* Problem Amplification */
.problem-amplification {
    background: #f5f1ed;
}

/* Insight Reveal */
.insight-reveal {
    background: #fff;
    padding: 5rem 0;
}

.lead-text {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
    color: #8b7355;
}

.card-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.insight-card {
    background: #fafafa;
    padding: 2.5rem;
    border-left: 4px solid #8b7355;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateX(10px);
}

.insight-card h3 {
    margin-top: 0;
    color: #8b7355;
}

/* Testimonial Flow */
.testimonial-flow {
    background: #2a2a2a;
    color: #fff;
    padding: 5rem 0;
}

.testimonial-flow blockquote {
    border: none;
    padding: 3rem 0;
    margin: 2rem 0;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: #fff;
}

.testimonial-flow cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1rem;
    color: #8b7355;
}

/* Visual Contrast */
.visual-contrast {
    padding: 5rem 0;
    background: #fff;
}

.dual-column {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
}

.column-dark,
.column-light {
    flex: 1;
    padding: 3rem 2rem;
}

.column-dark {
    background: #1a1a1a;
    color: #fff;
}

.column-dark h3 {
    color: #fff;
}

.column-light {
    background: #f5f1ed;
}

.contrast-list {
    list-style: none;
    margin-top: 2rem;
}

.contrast-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.contrast-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8b7355;
    font-size: 1.5rem;
}

/* Trust Building */
.trust-building {
    background: #f5f1ed;
    padding: 5rem 0;
}

.trust-stats {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 300;
    color: #8b7355;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: #2a2a2a;
    font-family: 'Helvetica Neue', sans-serif;
}

/* Benefits Reveal */
.benefits-reveal {
    background: #fff;
    padding: 5rem 0;
}

.offset-layout {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.benefit-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    gap: 2rem;
}

.benefit-block.reverse {
    flex-direction: column;
}

.benefit-block img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefit-text {
    flex: 1;
}

/* Services Showcase */
.services-showcase {
    background: #fafafa;
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #666;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    margin-top: 0;
    font-size: 1.8rem;
}

.service-price {
    display: block;
    font-size: 1.5rem;
    color: #8b7355;
    font-weight: 600;
    margin: 1rem 0;
    font-family: 'Helvetica Neue', sans-serif;
}

.service-description {
    margin: 1.5rem 0;
    color: #555;
}

.btn-select-service {
    display: inline-block;
    padding: 1rem 2rem;
    background: #8b7355;
    color: #fff;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-select-service:hover {
    background: #6d5942;
}

/* Urgency Block */
.urgency-block {
    background: #8b7355;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.urgency-content h2 {
    color: #fff;
    margin-top: 0;
}

.urgency-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
}

/* Form Section */
.form-section {
    background: #fff;
    padding: 5rem 0;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.form-container h2 {
    text-align: center;
    margin-top: 0;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 500;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7355;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #8b7355;
    color: #fff;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #6d5942;
}

/* Final CTA */
.final-cta {
    background: #2a2a2a;
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cta-wrapper h2 {
    color: #fff;
    margin-top: 0;
}

.cta-large {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: #8b7355;
    color: #fff;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 3px;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.cta-large:hover {
    background: #6d5942;
    transform: translateY(-2px);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #8b7355;
    padding: 1rem;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
    display: none;
}

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

.sticky-btn {
    color: #fff;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sticky-btn:hover {
    color: #fff;
    text-decoration: underline;
}

/* CTA Variations */
.cta-inline {
    display: inline-block;
    color: #8b7355;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    border-bottom: 2px solid #8b7355;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: #6d5942;
    border-bottom-color: #6d5942;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    color: #999;
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: #ccc;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #8b7355;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 0;
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 3rem;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2a2a2a, #4a4a4a);
    color: #fff;
    padding: 8rem 1.5rem 4rem;
    text-align: center;
    margin-top: 5rem;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.2rem;
    color: #ddd;
    font-style: italic;
}

/* About Page */
.about-content {
    background: #fff;
}

.about-hero-image {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-quote {
    background: #f5f1ed;
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 5px solid #8b7355;
    border-radius: 4px;
}

.about-quote p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.about-quote cite {
    font-style: normal;
    color: #8b7355;
    font-weight: 600;
}

.timeline {
    margin: 4rem 0;
    padding: 2rem;
    background: #fafafa;
    border-radius: 8px;
}

.timeline-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    display: inline-block;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #8b7355;
    margin-right: 1rem;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 0;
}

.cta-section h3 {
    margin-top: 0;
    margin-bottom: 2rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 3px;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.btn-primary {
    background: #8b7355;
    color: #fff;
}

.btn-primary:hover {
    background: #6d5942;
}

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

.btn-secondary:hover {
    background: #8b7355;
    color: #fff;
}

/* Services Page */
.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.service-detail {
    display: flex;
    flex-direction: column;
    margin-bottom: 5rem;
    gap: 2rem;
}

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

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-detail-content {
    flex: 1;
}

.price-tag {
    font-size: 1.8rem;
    color: #8b7355;
    font-weight: 600;
    margin: 1rem 0 2rem;
    font-family: 'Helvetica Neue', sans-serif;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: bold;
}

.services-cta {
    background: #f5f1ed;
    padding: 4rem 0;
    text-align: center;
}

/* Contact Page */
.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    margin-top: 0;
    color: #8b7355;
}

.info-block p {
    margin-bottom: 0.5rem;
}

.info-block a {
    color: #8b7355;
    text-decoration: underline;
}

.contact-map {
    flex: 1;
    position: relative;
}

.location-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.map-overlay {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.contact-cta {
    text-align: center;
    background: #f5f1ed;
    padding: 3rem 2rem;
    border-radius: 8px;
}

.contact-cta h2 {
    margin-top: 0;
}

/* Legal Pages */
.legal-page {
    background: #fff;
    padding: 2rem 0 4rem;
}

.legal-page .narrow-container {
    padding-top: 8rem;
}

.last-updated {
    font-style: italic;
    color: #999;
    margin-bottom: 3rem;
}

.legal-page ul,
.legal-page ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #8b7355;
    text-decoration: underline;
}

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

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

.cookies-table th {
    background: #f5f1ed;
    font-weight: 600;
}

/* Thanks Page */
.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    padding: 4rem 1.5rem;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background: #fff;
    padding: 4rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #8b7355;
    color: #fff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.service-selected {
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 1.5rem;
}

.thanks-email {
    font-size: 0.95rem;
    color: #666;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.8rem;
    }

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

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

    .split-text,
    .split-image {
        padding: 3rem;
    }

    .split-text {
        order: 1;
    }

    .split-image {
        order: 2;
    }

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

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

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

    .trust-stats {
        flex-direction: row;
        justify-content: space-between;
    }

    .benefit-block {
        flex-direction: row;
        align-items: center;
    }

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

    .benefit-block img {
        max-width: 45%;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 1.5rem);
    }

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

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

    .service-detail-image {
        max-width: 45%;
    }

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

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

    .footer-column {
        flex: 1;
    }

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

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

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

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

    .sticky-cta {
        display: block;
    }
}