/* === STYLES SPLIT FROM STYLE.CSS === */

.service-btn{
    background:#F79421;
    color:white;
    text-decoration:none;
    padding:18px 40px;
    border-radius:8px;
    font-weight:600;
}

.service-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    width:260px;
    height:60px;
    background:#F79421;
    color:white;
    text-decoration:none;
    border-radius:8px;
    font-size:18px;
    font-weight:600;
    transition:all 0.3s ease;
}

.service-btn:hover{
    background:#123F6B;
    color:white;
    transform:translateY(-3px);
}

/*=========================================
SERVICES HERO
=========================================*/

.services-hero {
    background: #112b4d;
    padding: 50px 0 80px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.services-hero-container {
    max-width: 900px !important;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.25;
}

.services-hero p {
    font-size: 16px;
    line-height: 1.65;
    color: #cbd5e1;
    margin: 0;
}

.services-hero .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247, 148, 33, 0.15);
    color: #F79421;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

/*SERVICES SECTION*/

.services-section {
    padding: 80px 0;
    background: #f8fafc;
}

.services-section-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03), 0 2px 4px -2px rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(18, 63, 107, 0.1), 0 8px 10px -6px rgba(18, 63, 107, 0.05);
    border-color: #123F6B;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 32px 24px 32px;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(18, 63, 107, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-phone, .mini-browser, .mini-dashboard, .mini-code, .mini-design {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 28px rgba(25, 196, 211, 0.25);
}

.service-card:hover .mini-phone {
    transform: rotate(-5deg) scale(1.15);
}

.service-card:hover .mini-browser {
    transform: scale(1.15);
}

.service-card:hover .mini-dashboard {
    transform: scale(1.15) translateY(-2px);
}

.service-card:hover .mini-code {
    transform: scale(1.15) rotate(5deg);
}

.service-card:hover .mini-design {
    transform: scale(1.25) rotate(15deg);
}

.website-icon {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15) 0%, rgba(14, 165, 233, 0.2) 100%);
    color: #0ea5e9;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.mobile-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(139, 92, 246, 0.2) 100%);
    color: #8b5cf6;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.erp-icon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(234, 88, 12, 0.2) 100%);
    color: #ea580c;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.software-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.2) 100%);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.design-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(219, 39, 119, 0.2) 100%);
    color: #db2777;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

/* ================= CUSTOM ICON MOCKUPS ================= */

/* Mini Phone / Mobile App Mockup */
.mini-phone {
    width: 26px;
    height: 42px;
    border: 2px solid currentColor;
    border-radius: 6px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.mini-phone-notch {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    opacity: 0.8;
}
.mini-phone-screen {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mini-phone-screen i {
    font-size: 13px !important;
    color: inherit !important;
}
.mini-phone-home {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border: 1px solid currentColor;
    border-radius: 50%;
}

/* Mini Browser Mockup */
.mini-browser {
    width: 36px;
    height: 28px;
    border: 2px solid currentColor;
    border-radius: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
}
.mini-browser-header {
    height: 6px;
    background: currentColor;
    opacity: 0.15;
    display: flex;
    align-items: center;
    padding-left: 2px;
    gap: 1.5px;
    flex-shrink: 0;
}
.mini-dot {
    width: 1.5px;
    height: 1.5px;
    background: currentColor;
    border-radius: 50%;
}
.mini-browser-screen {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mini-browser-screen i {
    font-size: 11px !important;
    color: inherit !important;
}

/* Mini ERP / Dashboard Mockup */
.mini-dashboard {
    display: flex;
    align-items: center;
    gap: 4px;
}
.mini-db-header i {
    font-size: 16px !important;
    color: inherit !important;
}
.mini-db-bars {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 12px;
}
.mini-bar {
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    opacity: 0.8;
}
.mini-bar.b-1 { width: 60%; }
.mini-bar.b-2 { width: 100%; }
.mini-bar.b-3 { width: 40%; }

/* Mini Code Editor Mockup */
.mini-code {
    display: flex;
    align-items: center;
    gap: 4px;
}
.mini-code-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 12px;
}
.code-line {
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    opacity: 0.7;
}
.code-line.l-1 { width: 80%; }
.code-line.l-2 { width: 100%; }
.code-line.l-3 { width: 60%; }
.mini-code i {
    font-size: 12px !important;
    color: inherit !important;
}

/* Mini Design Sparkle Mockup */
.mini-design {
    display: flex;
    align-items: center;
    justify-content: center;
}
.mini-design i {
    font-size: 20px !important;
    color: inherit !important;
}

.service-title-info {
    flex-grow: 1;
}

.service-title-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #123F6B;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.service-title-info p {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0;
}

.explore-btn {
    background: #e2e8f0;
    color: #334155;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.service-card:hover .explore-btn {
    background: #123F6B;
    color: #ffffff;
}

.service-body {
    padding: 0 32px 32px 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-body p {
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-grid span {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #123F6B;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.feature-grid span i {
    font-size: 14px;
    color: #F79421;
}

.feature-grid span:hover {
    background: #f0fdf4;
    border-color: #bbf7d0;
    transform: translateY(-1px);
}

.service-footer {
    padding: 0 32px 32px 32px;
}

.service-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    background: #123F6B;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.service-action:hover {
    background: #F79421;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 134, 30, 0.2);
}
/*PROCESS SECTION*/

.process-section {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.process-section h2 {
    font-size: 32px;
    color: #123F6B;
}

.process-section h2 span {
    background: #F79421;
    color: #ffffff;
    padding: 2px 10px;
    border-radius: 6px;
}

.process-subtitle {
    color: #64748b;
    font-size: 18px;
    margin-top: 12px;
    margin-bottom: 48px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    text-align: center;
}

.process-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px auto;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    transform: translateY(-6px);
}

.process-icon.orange {
    background: #F79421;
}

.process-icon.cyan {
    background: #20D4D4;
}

.process-icon.blue {
    background: #123F6B;
}

.process-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #123F6B;
    margin-bottom: 8px;
}

.process-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}
/*CTA SECTION*/

.services-cta-section {
    padding: 60px 0 80px 0;
    background: #ffffff;
}

.services-cta {
    background: #123F6B;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(18, 63, 107, 0.15);
}

.services-cta h2,
.services-cta h3 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.services-cta p {
    color: #d9e5f4;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.65;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F79421;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(201, 134, 30, 0.3);
}

.cta-btn:hover {
    background: #ffffff;
    color: #123F6B;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}
/*======================================
FINAL CTA
======================================*/

.process-cta{
    padding:40px 0 80px 0;
    background:#f7f9fc;
}

.process-cta-content{
position:relative;
background:linear-gradient(135deg,#183965,#1f4679);
border-radius:28px;
padding:80px 60px;
text-align:center;
overflow:hidden;
box-shadow:0 30px 70px rgba(20,50,90,.25);
}
/* Glow Effects */

.process-cta-content::before{
content:"";
position:absolute;
width:260px;
height:260px;
background:#1fd6e6;
border-radius:50%;
filter:blur(120px);
opacity:.18;
right:-70px;
top:-70px;
animation:floatGlow 6s ease-in-out infinite;
}

.process-cta-content::after{
content:"";
position:absolute;
width:220px;
height:220px;
background:#F79421;
border-radius:50%;
filter:blur(120px);
opacity:.12;
left:-80px;
bottom:-90px;
animation:floatGlow2 7s ease-in-out infinite;
}

.process-cta h2{
position:relative;
z-index:2;
font-size:36px;
font-weight:700;
color:#fff;
margin-bottom:20px;
}

.process-cta p{
position:relative;
z-index:2;
max-width:700px;
margin:auto;
font-size:16px;
line-height:1.65;
color:#d7dfef;
margin-bottom:45px;
}

.process-cta-buttons{
position:relative;
z-index:2;
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
}

.cta-primary{
background:#F79421;
color:#fff;
padding:18px 38px;
border-radius:12px;
font-size:17px;
font-weight:600;
text-decoration:none;
transition:.4s;
box-shadow:0 10px 25px rgba(216,146,40,.35);
}

.cta-primary:hover{
transform:translateY(-6px);
background:#F79421;
box-shadow:0 18px 35px rgba(216,146,40,.45);
}

.cta-secondary{
background:#F79421;
color:#fff;
padding:18px 38px;
border-radius:12px;
font-size:17px;
font-weight:600;
text-decoration:none;
transition:.4s;
box-shadow:0 10px 25px rgba(247,148,33,.35);
}

.cta-secondary:hover{
background:#ff9e3b;
transform:translateY(-6px);
box-shadow:0 18px 35px rgba(247,148,33,.45);
}

/* === ORIGINAL PAGE-SPECIFIC OVERRIDES === */
/* Container — matches header/footer/home */
.services-section-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    box-sizing: border-box;
}
/* ── Section Spacing ── */
.services-section {
    padding: 80px 0 60px;
    background: #f9fafb;
}
.process-section {
    padding: 60px 0;
    background: #fff;
}
.services-cta-section {
    padding: 60px 0 80px;
    background: #f9fafb;
}
/* ── Section Title ── */
.section-title {
    text-align: center;
    margin-bottom: 48px;
}
.section-badge {
    display: inline-block;
    background: rgba(247, 148, 33, 0.1);
    color: #f79421;
    border: 1px solid rgba(247, 148, 33, 0.25);
    box-shadow: 0 2px 10px rgba(247, 148, 33, 0.05);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 18px;
}
.section-title h2 {
    font-size: 30px !important;
    font-weight: 800;
    background: linear-gradient(135deg, #f79421 0%, #ffbf47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 auto 14px auto;
    letter-spacing: -0.5px;
    display: block;
    text-align: center;
}
.section-title h2 span {
    color: inherit;
}
.section-title p,
.process-subtitle {
    font-size: 17px !important;
    color: #64748b;
    margin: 0;
    line-height: 1.65;
}
/* ── Services Grid ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
/* ── Service Card ── */
.service-card {
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    border-color: rgba(25, 196, 211, 0.4);
    box-shadow: 0 20px 40px rgba(25, 196, 211, 0.08);
    transform: translateY(-8px) scale(1.015);
}
/* ── Service Header ── */
.service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    border-bottom: 1px solid #f0f2f5;
}
.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
/* Icon theme colors */
.website-icon  { background: #eef6ff; color: #3b82f6; }
.mobile-icon   { background: #f0fdf4; color: #22c55e; }
.erp-icon      { background: #fef3e2; color: #F79421; }
.software-icon { background: #f0f0ff; color: #6366f1; }
.design-icon   { background: #fdf2f8; color: #ec4899; }

.service-title-info {
    flex: 1;
    min-width: 0;
}
.service-title-info h3 {
    font-size: 19px !important;
    font-weight: 700;
    color: #0f2b47;
    margin: 0 0 3px;
    line-height: 1.3;
}
.service-title-info p {
    font-size: 14px;
    color: #8896a6;
    margin: 0;
    letter-spacing: 0.3px;
}
/* ── Explore Button ── */
.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #153f6b 0%, #0b2a4a 100%);
    padding: 8px 20px;
    border-radius: 50px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    flex-shrink: 0;
    letter-spacing: 0.3px;
}
.explore-btn:hover {
    background: #F79421;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(247, 148, 33, 0.3);
}
/* ── Service Body ── */
.service-body {
    padding: 20px 28px;
    flex: 1;
}
.service-body > p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0 0 16px;
}
/* ── Feature Grid ── */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.feature-grid span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #2d3748;
    padding: 8px 12px;
    background: #f7f9fb;
    border-radius: 10px;
    transition: all 0.25s ease;
}
.feature-grid span:hover {
    background: #eef3f8;
    transform: translateX(3px);
}
.feature-grid span i {
    color: #3b82f6;
    font-size: 15px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}
/* ── Service Footer ── */
.service-footer {
    padding: 16px 28px 22px;
    border-top: 1px solid #f0f2f5;
}
.service-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #F79421;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.2px;
}
.service-action:hover {
    color: #153f6b;
    gap: 12px;
}
/* PROCESS SECTION*/
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.process-card {
    background: #f9fafb;
    border: 1px solid #e8ecf1;
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-card:hover {
    background: #fff;
    border-color: #c9d6e3;
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(15, 43, 71, 0.07);
}
.process-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
    font-weight: 700;
}
.process-icon.orange { background: #fef3e2; color: #F79421; }
.process-icon.cyan   { background: #e0f7fa; color: #00acc1; }
.process-icon.blue   { background: #eef6ff; color: #3b82f6; }
.process-card h3 {
    font-size: 18px !important;
    font-weight: 700;
    color: #0f2b47;
    margin: 0 0 8px;
}
.process-card p {
    font-size: 15px;
    color: #667085;
    margin: 0;
    line-height: 1.5;
}
/* CTA SECTION*/
.services-cta {
    background: linear-gradient(135deg, #0f2b47 0%, #153f6b 50%, #1a4f80 100%);
    border-radius: 24px;
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 148, 33, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.services-cta h2 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}
.services-cta h3 {
    font-size: 24px;
    font-weight: 600;
    color: #F79421;
    margin: 0 0 14px;
}
.services-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 28px;
    line-height: 1.6;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    height: 58px;
    padding: 0 36px;
    border-radius: 50px;
    background: #F79421;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(247, 148, 33, 0.35);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}
.cta-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 36px rgba(247, 148, 33, 0.5);
}
/* RESPONSIVE*/
@media (max-width: 1024px) {
    .services-section-container {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .services-section-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .section-title h2 {
        font-size: 28px;
    }
    .services-section {
        padding: 48px 0 36px;
    }
    .process-section {
        padding: 36px 0;
    }
    .services-cta-section {
        padding: 36px 0 48px;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .service-header {
        flex-wrap: wrap;
    }
    .explore-btn {
        margin-left: auto;
    }
    .services-cta {
        padding: 36px 24px;
    }
    .services-cta h2 {
        font-size: 24px;
    }
    .cta-btn {
        min-width: auto;
        width: 100%;
    }
}