* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: #f8f9fa;
    color: #a8a9ad;
    padding: 2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.header-logo {
    height: 70px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #643b9f;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #4a2b75;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(45, 45, 45, 0.7)), url('/img/hero-seychelles.jpg') center/cover no-repeat;
    color: white;
    padding: 175px 0 125px;
    text-align: center;
    margin-top: 110px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #643b9f;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: #a8a9ad;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    opacity: 0.8;
}

.service-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65)), url('/img/about-partnership.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-weight: 600;
    font-size: 1.05rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.feature-icon {
    font-size: 2rem;
    color: #808080;
    filter: grayscale(100%);
}

/* Leadership Section */
.leadership {
    padding: 80px 0;
    background: #f8fafc;
}

.leader-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.leader-image {
    text-align: center;
}

.leader-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 4px solid #c0c0c0;
}

.leader-avatar {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #808080 0%, #2d2d2d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.leader-info h3 {
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.leader-title {
    color: #808080;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.leader-social {
    margin-bottom: 1.5rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s, transform 0.2s;
}

.linkedin-link:hover {
    background: #0077b5;
    transform: translateY(-2px);
}

.linkedin-link svg {
    width: 20px;
    height: 20px;
}

.leader-bio {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.leader-quote {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-left: 4px solid #1a1a1a;
    border-radius: 8px;
}

.leader-quote p {
    color: #1a1a1a;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.leader-quote cite {
    color: #808080;
    font-style: normal;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Team Members Grid */
.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.team-member-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.team-member-image {
    margin-bottom: 1.5rem;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #643b9f;
    box-shadow: 0 4px 10px rgba(100, 59, 159, 0.2);
}

.team-member-card h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-title {
    color: #643b9f;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-bio {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Group Companies Section */
.group-companies {
    padding: 80px 0;
    background: white;
}

.group-intro {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.company-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

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

.company-location {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.company-card h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.company-place {
    color: #808080;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.company-desc {
    color: #64748b;
    line-height: 1.7;
}

.company-url {
    display: inline-block;
    margin-top: 1.25rem;
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #c0c0c0;
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.company-url:hover {
    color: #808080;
    border-color: #808080;
}

/* Expertise Section */
.expertise {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='grad1' x1='0%25' y1='100%25' x2='0%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23643b9f;stop-opacity:0' /%3E%3Cstop offset='50%25' style='stop-color:%23643b9f;stop-opacity:0.3' /%3E%3Cstop offset='100%25' style='stop-color:%23643b9f;stop-opacity:0.5' /%3E%3C/linearGradient%3E%3ClinearGradient id='grad2' x1='0%25' y1='100%25' x2='0%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23a8a9ad;stop-opacity:0' /%3E%3Cstop offset='100%25' style='stop-color:%23a8a9ad;stop-opacity:0.2' /%3E%3C/linearGradient%3E%3C/defs%3E%3C!-- Vertical grid lines --%3E%3Cpath d='M100,0 L100,600 M200,0 L200,600 M300,0 L300,600 M400,0 L400,600 M500,0 L500,600 M600,0 L600,600 M700,0 L700,600 M800,0 L800,600 M900,0 L900,600 M1000,0 L1000,600 M1100,0 L1100,600' stroke='rgba(255,255,255,0.05)' stroke-width='1' fill='none'/%3E%3C!-- Horizontal grid lines --%3E%3Cpath d='M0,100 L1200,100 M0,150 L1200,150 M0,200 L1200,200 M0,250 L1200,250 M0,300 L1200,300 M0,350 L1200,350 M0,400 L1200,400 M0,450 L1200,450 M0,500 L1200,500 M0,550 L1200,550' stroke='rgba(255,255,255,0.08)' stroke-width='1' fill='none'/%3E%3C!-- Main upward trend line (thick, prominent) --%3E%3Cpath d='M0,550 L100,520 L200,480 L300,420 L400,380 L500,320 L600,280 L700,220 L800,180 L900,140 L1000,100 L1100,70 L1200,50' stroke='%23643b9f' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C!-- Secondary trend line --%3E%3Cpath d='M0,580 L100,555 L200,515 L300,470 L400,430 L500,385 L600,350 L700,310 L800,270 L900,230 L1000,200 L1100,170 L1200,150' stroke='%23a8a9ad' stroke-width='2.5' fill='none' opacity='0.6' stroke-linecap='round'/%3E%3C!-- Area fill under main curve --%3E%3Cpath d='M0,550 L100,520 L200,480 L300,420 L400,380 L500,320 L600,280 L700,220 L800,180 L900,140 L1000,100 L1100,70 L1200,50 L1200,600 L0,600 Z' fill='url(%23grad1)'/%3E%3C!-- Area fill under secondary curve --%3E%3Cpath d='M0,580 L100,555 L200,515 L300,470 L400,430 L500,385 L600,350 L700,310 L800,270 L900,230 L1000,200 L1100,170 L1200,150 L1200,600 L0,600 Z' fill='url(%23grad2)'/%3E%3C!-- Data points on main line --%3E%3Ccircle cx='200' cy='480' r='6' fill='%23643b9f' stroke='white' stroke-width='2'/%3E%3Ccircle cx='400' cy='380' r='6' fill='%23643b9f' stroke='white' stroke-width='2'/%3E%3Ccircle cx='600' cy='280' r='6' fill='%23643b9f' stroke='white' stroke-width='2'/%3E%3Ccircle cx='800' cy='180' r='6' fill='%23643b9f' stroke='white' stroke-width='2'/%3E%3Ccircle cx='1000' cy='100' r='6' fill='%23643b9f' stroke='white' stroke-width='2'/%3E%3C!-- Glow effect on data points --%3E%3Ccircle cx='200' cy='480' r='12' fill='%23643b9f' opacity='0.3'/%3E%3Ccircle cx='400' cy='380' r='12' fill='%23643b9f' opacity='0.3'/%3E%3Ccircle cx='600' cy='280' r='12' fill='%23643b9f' opacity='0.3'/%3E%3Ccircle cx='800' cy='180' r='12' fill='%23643b9f' opacity='0.3'/%3E%3Ccircle cx='1000' cy='100' r='12' fill='%23643b9f' opacity='0.3'/%3E%3C!-- Bar chart elements (subtle background) --%3E%3Crect x='50' y='500' width='30' height='100' fill='rgba(100,59,159,0.15)' rx='3'/%3E%3Crect x='150' y='470' width='30' height='130' fill='rgba(100,59,159,0.15)' rx='3'/%3E%3Crect x='250' y='430' width='30' height='170' fill='rgba(100,59,159,0.15)' rx='3'/%3E%3Crect x='350' y='390' width='30' height='210' fill='rgba(100,59,159,0.15)' rx='3'/%3E%3Crect x='450' y='340' width='30' height='260' fill='rgba(100,59,159,0.15)' rx='3'/%3E%3Crect x='550' y='300' width='30' height='300' fill='rgba(100,59,159,0.15)' rx='3'/%3E%3Crect x='650' y='250' width='30' height='350' fill='rgba(100,59,159,0.15)' rx='3'/%3E%3Crect x='750' y='200' width='30' height='400' fill='rgba(100,59,159,0.2)' rx='3'/%3E%3Crect x='850' y='150' width='30' height='450' fill='rgba(100,59,159,0.2)' rx='3'/%3E%3Crect x='950' y='120' width='30' height='480' fill='rgba(100,59,159,0.25)' rx='3'/%3E%3Crect x='1050' y='90' width='30' height='510' fill='rgba(100,59,159,0.25)' rx='3'/%3E%3C!-- Candlestick elements --%3E%3Crect x='120' y='450' width='15' height='80' fill='%23643b9f' opacity='0.3' rx='2'/%3E%3Crect x='320' y='400' width='15' height='70' fill='%23643b9f' opacity='0.3' rx='2'/%3E%3Crect x='520' y='330' width='15' height='90' fill='%23643b9f' opacity='0.3' rx='2'/%3E%3Crect x='720' y='240' width='15' height='100' fill='%23643b9f' opacity='0.3' rx='2'/%3E%3Crect x='920' y='160' width='15' height='80' fill='%23643b9f' opacity='0.3' rx='2'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: 0;
}

.expertise::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(100, 59, 159, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(168, 169, 173, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.expertise .container {
    position: relative;
    z-index: 1;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.expertise-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.expertise-item p {
    opacity: 0.9;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: white;
}

.partners-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-top: -1.5rem;
    margin-bottom: 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.partner-logo {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 150px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

.partner-logo p {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(rgba(248, 250, 252, 0.75), rgba(248, 250, 252, 0.75)), url('/img/contact-mahe-streets.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.contact-logo-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.form-hint {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.required-asterisk {
    color: #dc2626;
    font-weight: bold;
    margin-left: 2px;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: #643b9f;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-item-icon {
    font-size: 1.5rem;
    color: #a8a8a8;
    filter: grayscale(100%);
}

.contact-item h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #64748b;
}

.company-name-highlight {
    font-weight: 700;
    font-style: italic;
    font-size: 1.1rem;
    color: #1a1a1a;
}

/* Footer */
footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column:first-child {
    align-items: flex-start;
    text-align: left;
}

.footer-column:nth-child(2),
.footer-column:nth-child(3) {
    align-items: center;
    text-align: center;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Column 1: Menu */
.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
    width: 100%;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s, padding-left 0.3s;
    display: block;
    text-align: left;
}

.footer-menu a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Column 2: Map */
.footer-map {
    width: 100%;
    height: 200px;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Column 3: Address */
.footer-address {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-address p {
    margin: 0 0 1rem 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-address strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.3rem;
}

.footer-address a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-address a:hover {
    color: #ffffff;
}

.footer-social-inline {
    margin-top: 1rem;
}

.footer-social {
    display: flex;
    align-items: center;
}

.footer-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s, transform 0.2s;
}

.footer-linkedin:hover {
    background: #0077b5;
    transform: translateY(-3px);
}

.footer-linkedin svg {
    width: 20px;
    height: 20px;
}

/* Copyright Bar */
.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-column:nth-child(2),
    .footer-column:nth-child(3) {
        text-align: center;
    }
    
    .footer-column:nth-child(2) h4,
    .footer-column:nth-child(3) h4 {
        text-align: center;
    }
    
    .footer-menu {
        align-items: flex-start;
    }
    
    .footer-menu a:hover {
        padding-left: 5px;
    }
    
    .footer-map {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 0 0;
    }
    
    .footer-columns {
        gap: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
        margin-top: 1rem;
    }
    
    .footer-copyright p {
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-content,
    .contact-content,
    .leader-profile {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}
