:root {
    --primary-color: #0A2540; /* A deep, professional navy */
    --secondary-color: #007BFF; /* A vibrant, modern blue */
    --accent-color: #6B778D; /* A soft, secondary gray */
    --text-color: #333333;
    --light-text-color: #ffffff;
    --background-color: #ffffff;
    --light-background: #f8f9fa;
    --border-radius: 8px;
    --shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

h1, h2, h3 {
    font-weight: 700;
    color: var(--primary-color);
}

h2 {
    font-size: clamp(2rem, 5vw, 2.8rem); /* Responsive font size */
    text-align: center;
    margin-bottom: 1rem;
}

/* Custom styles for section titles like "WHAT WE OFFER" and "WHO WE ARE" */
.section-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title span {
    color: var(--secondary-color); /* Highlight color for "WE" */
}


.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
    color: var(--accent-color);
}

/* --- Header & Navigation --- */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    height: 45px;
    width: 150px;
    margin-right: 12px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Hide logo text on small screens */
@media (max-width: 768px) {
    .logo-text {
        display: none;
    }
}

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

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding-bottom: 5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

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

/* --- Main Content Area for Sub-pages --- */
.main-content {
    padding-top: 150px; /* Push content below fixed header */
    padding-bottom: 80px;
}

/* Contact page specific styling to reduce bottom spacing */
.contact-section {
    padding-bottom: 40px !important;
}

/* --- Hero Section (Homepage Only) --- */
.hero {
    background: linear-gradient(rgba(10, 37, 64, 0.7), rgba(10, 37, 64, 0.7)), url('./img/photo-1521737604893-d14cc237f11d.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light-text-color);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 0.5em;
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* --- Content Sections --- */
.section {
    padding: 80px 0;
}
.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--background-color);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}

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

.card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card p {
    font-size: 0.95rem;
    color: var(--accent-color);
}

/* --- WHAT WE OFFER Section --- */
.what-we-offer {
    background-color: var(--light-background);
}

.offer-grid {
    display: flex; /* Changed from grid to flex */
    flex-wrap: wrap; /* Allows items to wrap to the next line */
    justify-content: center; /* Centers items horizontally */
    gap: 20px;
    margin-top: 50px;
}

.offer-card {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px; /* Fixed height for consistency */
    width: 250px; /* Fixed width for consistency */
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    align-items: flex-end; /* Align text to the bottom */
    color: var(--light-text-color);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    width: 100%;
    padding: 20px;
    text-align: left;
}

.offer-card h3 {
    color: var(--light-text-color);
    font-size: 1.3rem;
    margin: 0;
    padding-top: 50px; /* Space for overlay gradient */
}

.card-desc {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: 10px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

/* hover 时显示（大屏幕） */
.offer-card:hover .card-desc,
.offer-card.active .card-desc {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
}


/* --- Contact & Footer --- */
.contact-info {
    text-align: center;
    max-width: 600px;
    margin: 40px auto 0 auto;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer {
    background: var(--primary-color); /* Dark background */
    color: var(--light-text-color);
    padding: 60px 0 20px 0; /* Adjusted padding */
    font-size: 0.9rem;
}

.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 20px; }
.footer .container { padding-bottom: 30px; }

.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo-img { height: 120px; width: auto; object-fit: contain; border-radius: 10px;}

/* Hide footer brand text on small screens */
@media (max-width: 768px) {
    .footer-brand .footer-logo span {
        display: none;
    }
}
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; color: var(--light-text-color); text-decoration: none; }
.footer-contact-item i { color: var(--secondary-color); }
.footer-contact-item a { color: var(--light-text-color); text-decoration: none; }
.footer-contact-item a:hover { text-decoration: underline; }

.footer-links h3 { color: var(--light-text-color); font-size: 1.2rem; margin-bottom: 25px; font-weight: 600; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.3s ease; }
.footer-links ul li a:hover { color: var(--secondary-color); }

.footer-separator { border: none; border-top: 1px solid rgba(255, 255, 255, 0.1); margin: 10px 0 0 0; }

.footer-col:first-child .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-col:first-child .footer-logo img {
    height: 60px; /* Adjust logo size */
    width: 60px;
    margin-right: 15px;
    object-fit: contain;
}

.footer-col:first-child .footer-logo span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text-color);
}

/* Hide footer logo text on small screens */
@media (max-width: 768px) {
    .footer-col:first-child .footer-logo span {
        display: none;
    }
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--light-text-color);
    text-decoration: none;
}

.footer-contact-item svg {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    color: var(--secondary-color); /* Use secondary color for icons */
}

.footer-contact-item span {
    color: var(--light-text-color);
}

.footer-col h3 {
    color: var(--light-text-color);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px; /* For mobile spacing */
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}


/* --- Mobile Navigation --- */
.menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    z-index: 1001;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active .bar:nth-child(1) { transform: rotate(45deg) translate(7px, 6px); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background-color: var(--light-background);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    .nav-links.active { right: 0; }
    .menu-toggle { display: flex; }

    /* Adjust offer grid for smaller screens */
    .offer-grid {
        flex-direction: column; /* Stack cards vertically on smaller screens */
        align-items: center; /* Center cards when stacked */
    }

    .offer-card {
        width: 90%; /* Make cards take more width on mobile */
        max-width: 300px; /* Limit max width even when wider */
    }

    /* Footer responsive adjustments */
    .footer .container {
        grid-template-columns: 1fr; /* Stack columns on small screens */
        text-align: center;
    }

    .footer-col:first-child .footer-logo {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
        width: 100%;
    }

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

/* --- WHO WE ARE Section Styles --- */
.who-we-are {
    position: relative;
    padding: 100px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/photo-1556761175-5973dc0f32e7.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* .who-we-are .section-title {
    color: #ffffff;
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 40px;
    font-weight: 700;
} */ /* Merged with .section-title */

.who-we-are .section-title {
    color: var(--light-text-color); /* Title color for this section */
}

.who-we-are .section-title span {
    color: #FFA500; /* Orange color for 'WE' specific to this section if needed, otherwise uses global */
}

.who-we-are-card {
    max-width: 550px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.who-we-are-card .card-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
}

.who-we-are-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.star-rating {
    color: #FFC107; /* Gold color for stars */
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.who-we-are-card p {
    color: var(--accent-color);
    font-size: 1rem;
    line-height: 1.6;
}

/* --- About Page Specific Styles --- */
.about-hero {
    padding-top: 150px; /* To account for fixed header */
    padding-bottom: 80px;
    background: linear-gradient(rgba(10, 37, 64, 0.8), rgba(10, 37, 64, 0.8)), url('./img/photo-1519389950473-47ba0277781c.avif');
    background-size: cover;
    background-position: center;
    color: var(--light-text-color);
    text-align: center;
}

.about-hero .section-title {
    color: var(--light-text-color);
    margin-bottom: 1rem;
}

.about-hero .section-title span {
    color: var(--secondary-color);
}

.about-hero .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-bottom: 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-intro-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.about-intro-text p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.about-intro-image {
    text-align: center;
}

.about-intro-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.what-we-stand-for .card-icon {
    color: var(--secondary-color); /* Ensure icons are colored */
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.expertise-item {
    background: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.expertise-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.expertise-item h3 {
    font-size: 1.4rem;
    margin: 20px 0 10px;
    color: var(--primary-color);
}

.expertise-item p {
    padding: 0 25px 25px;
    color: var(--accent-color);
    font-size: 0.95rem;
}

.why-choose-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.why-choose-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.bg-light {
    background-color: var(--light-background);
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .about-intro-grid {
        grid-template-columns: 1fr; /* Stack elements vertically */
    }

    .about-intro-image {
        order: -1; /* Move image above text on mobile */
    }
}

.services-hero {
    padding-top: 150px; /* To account for fixed header */
    padding-bottom: 80px;
    background: linear-gradient(rgba(10, 37, 64, 0.8), rgba(10, 37, 64, 0.8)), url('./img/photo-1556761175-5973dc0f32e7.avif'); /* Reusing image from who-we-are for consistency */
    background-size: cover;
    background-position: center;
    color: var(--light-text-color);
    text-align: center;
}

.services-hero .section-title {
    color: var(--light-text-color);
    margin-bottom: 1rem;
}

.services-hero .section-title span {
    color: var(--secondary-color);
}

.services-hero .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-bottom: 0;
}

/* Careers hero (matches services/about hero style) */
.careers-hero {
    padding-top: 150px;
    padding-bottom: 80px;
    background: linear-gradient(rgba(10, 37, 64, 0.8), rgba(10, 37, 64, 0.8)), url('./img/photo-1521737604893-d14cc237f11d.avif');
    background-size: cover;
    background-position: center;
    color: var(--light-text-color);
    text-align: center;
}

.careers-hero .section-title { color: var(--light-text-color); margin-bottom: 1rem; }
.careers-hero .section-title span { color: var(--secondary-color); }
.careers-hero .section-subtitle { color: rgba(255, 255, 255, 0.9); max-width: 700px; margin-bottom: 0; }

/* 定义颜色变量，方便统一管理和修改 */

/* #007BFF */
.careers-section {
    background: #f8f8f8; /* 调整为柔和的浅灰色背景 */
    padding: 100px 0; /* 增加整体上下间距 */
  }
  
  /* 顶部介绍布局 */
  .intro-row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px; /* 增加左右间距 */
    align-items: center;
    margin-bottom: 80px; /* 增加与下方卡片的间距 */
  }
  
  .intro-text {
    flex: 1 1 55%;
  }
  
  .intro-text p {
    margin-bottom: 1.5rem; /* 增加段落间距 */
    line-height: 1.8;
    color: #444; /* 调整为更柔和的深灰色 */
  }

  .intro-text h2.section-title span {
      color: #007BFF; /* 使用深邃的蓝色 */
  }
  
  .intro-image {
    flex: 1 1 40%;
    text-align: center;
  }
  
  .intro-image img {
    max-width: 100%;
    border-radius: 16px; /* 更大的圆角 */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* 更柔和的阴影 */
  }
  
  /* 优势卡片布局 */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* 调整最小宽度 */
    gap: 32px; /* 增加卡片间距 */
    margin: 40px 0 80px; /* 增加与上下区域的间距 */
  }
  
  .benefit-card {
    background: #fff; /* 卡片背景为白色 */
    border: 1px solid #eee;
    border-radius: 18px; /* 更大的圆角 */
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
  }
  
  .benefit-card:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.12); /* 调整阴影参数，使其更柔和立体 */
    transform: translateY(-8px); /* 提升效果更明显 */
  }
  
  .icon-circle {
    width: 65px;
    height: 65px;
    background: #ff8c00; /* 使用柔和的橙色 */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.7rem; /* 增大图标尺寸 */
  }
  
  .benefit-card h4 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    color: #0A2540; /* 与标题颜色保持一致 */
  }
  
  .benefit-card p {
    line-height: 1.6;
    color: #555;
  }
  
  /* CTA 区域 */
  .cta-box {
    text-align: center;
    margin-top: 60px;
    background: #fff; /* 背景为白色 */
    padding: 50px 30px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  }
  
  .highlight-text {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    color: #0A2540; /* 与主色调保持一致 */
    max-width: 700px;
    margin: 0 auto;
  }
  
  .btn-apply {
    display: inline-block;
    background: #007BFF; /* 使用深蓝色 */
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px; /* pill-shaped 按钮 */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    margin-top: 25px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    text-decoration: none;
  }
  
  .btn-apply:hover {
    background: #0056b3; /* hover 时使用柔和的橙色 */
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  
  /* 响应式调整 */
  @media (max-width: 768px) {
    .intro-row {
      flex-direction: column;
      text-align: center;
      gap: 30px;
    }
    .intro-text, .intro-image {
      flex: 1 1 100%;
    }
  
    .benefits-grid {
      grid-template-columns: 1fr;
    }
  
    .cta-box {
      padding: 40px 20px;
    }
  }
  


.service-category {
    padding: 80px 0;
}

.service-category .category-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
}

.service-category .category-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.service-item {
    display: flex;
    align-items: flex-start; /* Align icon and text at the top */
    gap: 30px;
    margin-bottom: 40px;
    background: var(--background-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Service category banner image */
.service-category-image {
    margin: 0 auto 30px auto;
    max-width: 1000px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-category-image img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-icon {
    flex-shrink: 0; /* Prevent icon from shrinking */
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--light-text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-details h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-details p {
    font-size: 1rem;
    color: var(--accent-color);
    line-height: 1.7;
}

/* Responsive adjustments for services page */
@media (max-width: 768px) {
    .service-item {
        flex-direction: column; /* Stack icon above text on mobile */
        text-align: center;
        padding: 25px;
    }

    .service-category-image img {
        height: 200px;
    }

    .service-icon {
        margin: 0 auto 20px auto; /* Center icon and add space below */
    }

    .service-details h3 {
        font-size: 1.3rem;
    }
    .service-details p {
        font-size: 0.95rem;
    }
}