:root {
    --primary: #00213f;
    --secondary: #0090d4;
    --accent: #00b4f2;
    --light: #f8fcff;
    --lighter: #e8f0fc;
    --white: #ffffff;
    --gray: #6c757d;
    --shadow: rgba(0, 33, 63, 0.15);
    --shadow-lg: rgba(0, 33, 63, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rka-scope {
    font-family: "Inter", sans-serif;
    background: var(--light);
    color: var(--primary);
    line-height: 1.8;
    overflow-x: hidden;
    width: 100%;
}

.rka-scope h1,
.rka-scope h2,
.rka-scope h3,
.rka-scope h4,
.rka-scope h5,
.rka-scope h6 {
    font-family: "Lora", serif;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.3px;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
    background: none;
    margin-top: 0rem;
    padding: 0;
    width: 100%;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.hero-slide-1 {
    background: linear-gradient(
        135deg,
        rgba(0, 33, 63, 0.8),
        rgba(0, 144, 212, 0.7)
    );
}

.hero-slide-2 {
    background: linear-gradient(
        135deg,
        rgba(0, 33, 63, 0.8),
        rgba(0, 144, 212, 0.7)
    );
}

.hero-slide-3 {
    background: linear-gradient(
        135deg,
        rgba(0, 33, 63, 0.8),
        rgba(0, 144, 212, 0.7)
    );
}

.hero-content {
    text-align: center;
    max-width: 900px;
    width: 90%;
    padding: 2.5rem;
    color: var(--white);
    background: rgba(0, 33, 63, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 33, 63, 0.2);
}

.hero-content h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.btn-primary-filled,
.btn-primary-outline {
    font-family: "Inter", sans-serif;
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin: 0.5rem;
}

.btn-primary-filled {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    color: var(--white);
    border: none;
}

.btn-primary-filled:hover {
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 144, 212, 0.3);
}

.btn-primary-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-primary-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 33, 63, 0.2);
}

.btn-primary-filled i,
.btn-primary-outline i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.btn-primary-filled:hover i,
.btn-primary-outline:hover i {
    transform: translateX(4px);
}

/* Slick Slider Dots */
.slick-dots {
    position: absolute;
    bottom: 40px;
    display: flex !important;
    gap: 12px;
    justify-content: center;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6) !important;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0;
}

.slick-dots li button::before {
    content: none !important;
}

.slick-dots li button:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.2);
}

.slick-dots li.slick-active button {
    background: var(--accent) !important;
    transform: scale(1.4);
}

/* Home Insights Section */
.home-insights-section {
    padding: 5rem 0 1rem;
    background: linear-gradient(180deg, var(--light), var(--lighter));
}

.home-insights-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 1.8rem;
}

.home-insights-section .lead {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    color: var(--gray);
    max-width: 1000px;
    margin: 0 auto 3rem;
    text-align: center;
}

.home-insights-section .btn-all-container {
    display: flex;
    justify-content: center;
}

.home-insights-section .btn-all {
    margin-top: 3rem;
}

/* Article Card (same design as insights listing page) */
.article-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 260px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #334155 0%, #0f172a 100%);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
}

.article-card .card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0.78) 100%
    );
    z-index: 1;
    transition: background 0.4s ease;
    pointer-events: none;
}

.article-card:hover .card-img-overlay {
    background: linear-gradient(
        to bottom,
        rgba(30, 64, 175, 0.35) 0%,
        rgba(2, 6, 23, 0.75) 60%,
        rgba(2, 6, 23, 0.90) 100%
    );
}

.article-card .category-badge-normal,
.article-card .default-title,
.article-card .content-overlay {
    position: relative;
    z-index: 2;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.article-card .category-badge-normal {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 4;
    background: #e0f2fe;
    color: #0f172a;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 9999px;
    width: fit-content;
    pointer-events: none;
}

.article-card .default-title {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.article-card:hover .default-title {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.article-card .default-title h3 {
    font-family: Georgia, Cambria, "Times New Roman", Times, serif;
    font-weight: bold;
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1.3;
    margin: 0;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card .content-overlay {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.article-card:hover .content-overlay {
    opacity: 1;
    pointer-events: auto;
}

.article-card .content-overlay .content-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.article-card .content-overlay h3 {
    font-family: Georgia, Cambria, "Times New Roman", Times, serif;
    font-weight: bold;
    color: #ffffff;
    font-size: 1.45rem;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.article-card:hover .content-overlay h3 {
    transform: translateY(0);
    opacity: 1;
}

.article-card .content-overlay p {
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease 0.05s, opacity 0.4s ease 0.05s;
}

.article-card:hover .content-overlay p {
    transform: translateY(0);
    opacity: 1;
}

/* Stats Section */
.stats-section {
    padding: 2.4rem 0;
    background: linear-gradient(180deg, var(--light), var(--lighter));
    position: relative;
    width: 100%;
    /* padding-right: 5rem; */
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.2),
        transparent 70%
    );
    opacity: 0.4;
}

.stats-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 2rem;
}

.stat-item {
    background: linear-gradient(135deg, var(--white), var(--light));
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 25px var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px var(--shadow-lg);
}

.stat-number {
    font-family: "Lora", serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: var(--primary);
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: var(--light);
    width: 100%;
    /* padding-right: 5rem; */
}

.services-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 1.5rem;
}

.services-section .lead {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--gray);
    max-width: 1000px;
    margin: 0 auto 2rem;
    text-align: center;
}

.service-card {
    background: linear-gradient(135deg, var(--white), var(--light));
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 25px var(--shadow);
    transition: var(--transition);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: justify;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px var(--shadow-lg);
}

.service-card h3 {
    font-size: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 2lh;
}

.service-card p {
    color: var(--gray);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    flex-grow: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    min-height: 5lh;
}

.learn-more {
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.learn-more:hover {
    color: var(--accent);
    transform: translateX(6px);
}

.learn-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.learn-more:hover i {
    transform: translateX(4px);
}

.btn-all {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    color: var(--white);
    border: none;
    padding: 0.5rem 1.5rem;
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
    font-weight: 600;
    border-radius: 50px;
    margin: 2rem auto 0;
    display: block;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    width: clamp(190px, 20vw, 160px);
}

.btn-all:hover {
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 144, 212, 0.3);
}

/* Why Choose Us */
.why-choose-us {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--white), var(--lighter));
    position: relative;
    width: 100%;
    /* padding-right: 5rem; */
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.2),
        transparent 70%
    );
    opacity: 0.4;
}

.why-choose-us h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 1.5rem;
}

.why-choose-us .lead {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--gray);
    max-width: 1000px;
    margin: 0 auto 2rem;
    text-align: center;
}

.why-choose-image {
    display: flex;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    max-height: 400px;
    margin-bottom: 0 !important;
}

.why-choose-image:hover img {
    transform: scale(1.03);
}

/* Why Choose Us Grid Layout */
.why-choose-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.why-choose-grid .feature-item {
    margin-bottom: 0;
}

/* Default / Mobile: 1 card in each row */
.choice-card-1 { grid-column: 1; grid-row: 2; }
.choice-card-2 { grid-column: 1; grid-row: 3; }
.choice-card-3 { grid-column: 1; grid-row: 4; }
.choice-card-4 { grid-column: 1; grid-row: 5; }

/* Medium screens (< lg breakpoint, i.e. 768px to 991.98px): two cards in a row */
@media (min-width: 768px) and (max-width: 991.98px) {
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
    }
    .why-choose-image {
        grid-column: 1 / span 2;
        grid-row: 1;
    }
    .choice-card-1 {
        grid-column: 1;
        grid-row: 2;
    }
    .choice-card-2 {
        grid-column: 2;
        grid-row: 2;
    }
    .choice-card-3 {
        grid-column: 1;
        grid-row: 3;
    }
    .choice-card-4 {
        grid-column: 2;
        grid-row: 3;
    }
}

/* Large screens (>= 992px): 1 text card below the image, other 3 on the right side */
@media (min-width: 992px) {
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }
    .why-choose-image {
        grid-column: 1;
        grid-row: 1 / span 2;
    }
    .choice-card-1 {
        grid-column: 1;
        grid-row: 3;
    }
    .choice-card-2 {
        grid-column: 2;
        grid-row: 1;
    }
    .choice-card-3 {
        grid-column: 2;
        grid-row: 2;
    }
    .choice-card-4 {
        grid-column: 2;
        grid-row: 3;
    }
    .why-choose-grid .why-choose-image img {
        max-height: none;
    }
}

.feature-item {
    background: linear-gradient(135deg, var(--white), var(--light));
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 25px var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-icon:hover {
    transform: scale(1.1);
}

.feature-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.feature-title {
    font-size: clamp(1.4rem, 2.5vw, 1.6rem);
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--gray);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* Industries Section */
.industries-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--lighter), var(--white));
    width: 100%;
    /* padding-right: 5rem; */
}

.industries-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 1.5rem;
}

.industries-section .lead {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--gray);
    max-width: 1000px;
    margin: 0 auto 2rem;
    text-align: center;
}
.industries-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.industries-icon svg {
    width: 40px;
    /* adjust size */
    height: 40px;
    color: var(--primary);
    /* if you want it colored like FontAwesome */
}

.industry-item {
    background: linear-gradient(135deg, var(--white), var(--light));
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 25px var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.industry-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.industry-item i {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--secondary);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.industry-item:hover i {
    color: var(--accent);
    transform: scale(1.2);
}

.industry-item p {
    font-weight: 600;
    color: var(--primary);
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    width: 100%;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.2),
        transparent 70%
    );
    opacity: 0.4;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-section p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    max-width: 100%;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (min-width: 1200px) {
    .section-container {
        max-width: 1400px;
        padding: 0 1rem;
    }
}

@media (max-width: 992px) {
    .hero-section,
    .hero-slide {
        min-height: 80vh;
    }
    .hero-content h1 {
        font-size: clamp(1.8rem, 5vw, 3rem);
    }
    .hero-content p {
        font-size: clamp(0.85rem, 2.8vw, 1.1rem);
    }
    .stats-section h2,
    .services-section h2,
    .why-choose-us h2,
    .industries-section h2,
    .cta-section h2 {
        font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    }
    .stat-number {
        font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    }
    .service-card {
        min-height: 300px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        margin-left: 10rem;
        margin-top: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        margin-left: 5rem;
        margin-top: 3rem;
        width: 80%;
    }
}

@media (max-width: 768px) {
    .hero-section,
    .hero-slide {
        min-height: 70vh;
    }
    .hero-content {
        padding: 1.5rem;
        margin-left: 2rem;
        margin-top: 2.5rem;
        width: 85%;
    }
    .hero-content h1 {
        font-size: clamp(1.6rem, 4.5vw, 2.5rem);
    }
    .hero-content p {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
    }
    .btn-primary-filled,
    .btn-primary-outline {
        padding: 0.6rem 1.5rem;
        font-size: clamp(0.75rem, 2.2vw, 0.9rem);
        width: 100%;
        max-width: 220px;
    }
    .stats-section,
    .services-section,
    .why-choose-us,
    .industries-section,
    .cta-section {
        padding: 3rem 0;
    }
    .stats-section h2,
    .services-section h2,
    .why-choose-us h2,
    .industries-section h2,
    .cta-section h2 {
        font-size: clamp(1.5rem, 3.2vw, 2rem);
    }
    .stat-number {
        font-size: clamp(1.6rem, 4vw, 2.5rem);
    }
    .stat-label,
    .industry-item p {
        font-size: clamp(0.85rem, 2.2vw, 1rem);
    }
    .service-card h3 {
        font-size: clamp(1rem, 3vw, 1.5rem);
        line-height: 1.2;
    }
    .service-card p,
    .services-section .lead,
    .why-choose-us .lead,
    .industries-section .lead {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    }
    .feature-title {
        font-size: clamp(1.3rem, 2.3vw, 1.5rem);
    }
    .feature-description {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    }
    .btn-all {
        width: 140px;
        padding: 0.5rem 1rem;
        font-size: clamp(0.8rem, 2vw, 0.85rem);
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-section,
    .hero-slide {
        min-height: 60vh;
    }
    .hero-content {
        padding: 1rem;
        margin-left: 1rem;
        margin-top: 2rem;
        width: 90%;
    }
    .hero-content h1 {
        font-size: clamp(1.4rem, 4vw, 2.2rem);
    }
    .hero-content p {
        font-size: clamp(0.75rem, 2.2vw, 0.9rem);
    }
    .section-container {
        padding: 0 0.5rem;
    }
    .btn-primary-filled,
    .btn-primary-outline {
        padding: 0.5rem 1.2rem;
        max-width: 200px;
    }
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    .feature-icon i {
        font-size: 1.2rem;
    }
    .industry-item i {
        font-size: clamp(1.8rem, 4vw, 2rem);
    }
}

@media (max-width: 320px) {
    .hero-section,
    .hero-slide {
        min-height: 50vh;
    }
    .hero-content {
        padding: 0.8rem;
    }
    .hero-content h1 {
        font-size: clamp(1.2rem, 3.8vw, 1.8rem);
    }
    .hero-content p {
        font-size: clamp(0.7rem, 2vw, 0.85rem);
    }
    .btn-primary-filled,
    .btn-primary-outline {
        padding: 0.4rem 1rem;
        font-size: clamp(0.7rem, 2vw, 0.85rem);
        max-width: 180px;
    }
    .section-container {
        padding: 0 0.3rem;
    }
}
