/* Global Styles */
:root {
    --primary-color: #1a4f8b;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Header Styles */
.navbar {
    padding: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
    height: 90px;
    width: 100%;
}

.header-container {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    height: 100%;
}

.header-left {
    width: 250px; /* 调整左侧区域宽度 */
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-left: 60px; /* 减小与分隔线的距离 */
}

.logo-img {
    height: 60px;
    width: auto;
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-left: 15px;
}

.header-separator {
    width: 1px;
    height: 90px; /* 将高度设置为与header相同 */
    background-color: #eee;
    margin: 0;
    opacity: 0.8;
    position: absolute;
    left: 270px;
    top: 0;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--secondary-color);
    font-weight: 400; /* 调整字体粗细为400，比500细一点 */
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

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

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* 移动端样式 */
@media (max-width: 991px) {
    .navbar {
        height: auto;
        min-height: 70px;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 0;
    }
    
    .container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .header-container {
        min-height: 70px;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .header-left {
        width: auto;
        padding: 10px 0;
        margin-right: auto;
    }
    
    .header-right {
        padding-left: 0;
        position: static;
        width: auto;
    }

    .header-separator {
        display: none;
    }
    
    .navbar-collapse {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 0;
        margin: 0;
        width: 100%;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .navbar-nav {
        width: 100%;
        padding: 0;
        margin: 0;
        gap: 0;
        box-sizing: border-box;
    }
    
    .nav-item {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    
    .nav-link {
        padding: 15px 20px;
        width: 100%;
        display: block;
        box-sizing: border-box;
    }

    .logo-img {
        height: 50px;
        width: auto;
    }
    
    .navbar-toggler {
        padding: 4px 12px;
        margin-left: 15px;
        margin-right: 0;
        border: 1px solid #ddd;
        border-radius: 4px;
    }
}

/* 移动端全局样式调整 */
    @media (max-width: 991px) {
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .fixed-top {
        width: 100%;
        left: 0;
        right: 0;
    }

    .carousel {
        margin-top: 0;
        width: 100%;
        overflow: hidden;
    }

    .carousel-item {
        height: calc(100vh - 70px);
        width: 100%;
        overflow: hidden;
    }

    .carousel-caption {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
}

/* 确保所有section在移动端不会溢出 */
@media (max-width: 991px) {
    .features,
    .about-us,
    .organization-structure,
    .team,
    .company-business,
    .resources,
    .cases,
    .contact,
    .footer {
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .row {
        margin-left: -15px;
        margin-right: -15px;
        width: auto;
    }

    .contact-content,
    .footer-content {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Hero Carousel */
.carousel {
    margin-top: 90px;
    position: relative;
}

.carousel-item {
    height: calc(100vh - 90px); /* 减去header高度90px，实现真正的全屏 */
    position: relative;
    overflow: hidden;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(58, 81, 197, 0.75) 0%,      /* 上部分：深蓝色 #3A51C5 */
        rgba(58, 81, 197, 0.6) 30%,      /* 上部分过渡 */
        rgba(132, 152, 221, 0.5) 40%,    /* 中间部分：浅蓝色 #8498DD */
        rgba(132, 152, 221, 0.3) 60%,    /* 中间部分过渡 */
        rgba(132, 152, 221, 0.1) 80%,    /* 渐变过渡到透明 */
        transparent 100%                  /* 下部分：完全透明 */
    );
    z-index: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95); /* 轻微调整图片亮度 */
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: none;
    padding: 0;
    width: 100%;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-caption h1 {
    font-size: 72px; /* 进一步增大标题字体 */
    font-weight: 600; /* 调整字重 */
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.carousel-caption p {
    font-size: 32px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    margin: 0;
    font-weight: 300;
    line-height: 1.4;
    opacity: 1; /* 移除透明度 */
}

.carousel-indicators {
    bottom: 40px;
    z-index: 2;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
}

.carousel-indicators button.active {
    background-color: #fff;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    z-index: 2;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
}

@media (max-width: 768px) {
    .carousel-item {
        height: calc(100vh - 90px); /* 移动端也保持全屏 */
    }

    .carousel-caption h1 {
        font-size: 36px; /* 调整移动端标题大小 */
        margin-bottom: 20px;
    }
    
    .carousel-caption p {
        font-size: 20px; /* 调整移动端副标题大小 */
        line-height: 1.3;
    }
}

/* Features Section */
.features {
    padding: 30px 0 40px; /* 减少与banner的间距，上padding减小到30px */
}

.feature-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    padding: 25px !important;
    min-height: 260px; /* 稍微减少最小高度 */
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 12px; /* 大幅减少图标与文字的间距 */
}

.feature-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block; /* 确保图片不会产生额外的下边距 */
}

.feature-box h3 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px; /* 稍微减少标题与描述文字的间距 */
    line-height: 1.3;
}

.feature-box p {
    font-size: 14px;
    line-height: 1.5; /* 稍微减少行高 */
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .features {
        padding: 30px 0;
    }
    
    .feature-box {
        margin-bottom: 20px;
        padding: 20px !important;
        min-height: auto;
    }

    .feature-box h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .feature-box p {
        font-size: 13px;
        line-height: 1.4;
    }
}

/* About Us Section */
.about-us {
    padding: 60px 0;
    background-color: #fff;
}

.about-us h2 {
    font-size: 48px;
    color: #000;
    margin-bottom: 40px;
    font-weight: 600;
}

.about-us .business-purpose {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 35px 40px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    gap: 25px;
}

.about-us .business-purpose img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #000;
    border-radius: 0;
    padding: 0;
}

.about-us .business-purpose .content {
    flex: 1;
}

.about-us .business-purpose h3 {
    font-size: 22px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 500;
}

.about-us .business-purpose p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.about-us .company-intro {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-top: 40px;
    padding: 0;
    font-weight: 400;
}

.about-us .row {
    display: flex;
    flex-wrap: wrap;
}

.about-us .col-lg-6 {
    display: flex;
    flex-direction: column;
}

.about-us .right-image-container {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-left: 40px;
}

.about-us .right-image-card {
    width: 90%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.about-us .right-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .about-us h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .about-us .business-purpose {
        padding: 25px 30px;
        gap: 20px;
    }

    .about-us .business-purpose img {
        width: 50px;
        height: 50px;
    }

    .about-us .business-purpose h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .about-us .business-purpose p {
        font-size: 14px;
        line-height: 1.5;
    }

    .about-us .right-image-container {
        padding-left: 0;
        margin-top: 30px;
        height: 400px;
    }
    
    .about-us .right-image-card {
        width: 100%;
    }
}

/* Organization Structure Section */
.organization-structure {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.organization-structure h2 {
    font-size: 48px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 600;
}

.organization-structure .equity-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
    max-width: 90%;
}

.organization-structure .structure-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
}

.organization-structure .structure-chart img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .organization-structure {
        padding: 60px 0;
    }

    .organization-structure h2 {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .organization-structure .equity-description {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
    }

    .organization-structure .structure-chart {
        margin-top: 30px;
        padding: 0;
    }
}

/* Team Section */
.team {
    padding: 80px 0;
    background-color: #fff;
}

.team h2 {
    font-size: 48px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
}

.team-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
}

.team .row {
    margin: 0 -20px;
}

.team .col-lg-3 {
    padding: 0 20px;
}

.team-member {
    text-align: center;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 15px;
    padding: 40px 25px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 30px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.team-member h4 {
    font-size: 22px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 500;
}

.team-member p {
    font-size: 15px;
    color: #666;
    margin: 0;
}
/* 导航菜单悬停和选中样式 */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #003399 !important;
    position: relative;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: #003399;
}
@media (max-width: 991px) {
    .team {
        padding: 60px 0;
    }

    .team h2 {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .team-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .team .row {
        margin: 0 -15px;
    }

    .team .col-lg-3 {
        padding: 0 15px;
    }

    .team-member {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .team-member img {
        width: 140px;
        height: 140px;
        margin-bottom: 25px;
    }

    .team-member h4 {
        font-size: 20px;
    }

    .team-member p {
        font-size: 14px;
    }
}

/* Business Section */
.business {
    background-image: url('../images/business-bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    color: white;
    position: relative;
}

.business::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.business-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    margin-bottom: 2rem;
}

/* Cases Section */
.case-card {
    margin-bottom: 2rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.case-content {
    padding: 1.5rem;
}

.date {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    position: relative;
    background: #fff;
}

.contact-bg {
    background: url('../img/public/ContactUs.png') no-repeat center center;
    background-size: cover;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 200px;
}

.contact-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.contact-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.contact h2 {
    font-size: 32px;
    color: #fff;
    margin: 0;
    font-weight: 600;
    white-space: nowrap;
}

.contact-form {
    margin: 0;
    flex: 0 1 500px;
}

.contact-form .input-group {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 4px;
    padding: 5px;
    height: 44px;
}

.contact-form .form-control {
    border: none;
    background: transparent;
    height: 100%;
    padding: 0 20px;
    font-size: 15px;
    flex: 1;
}

.contact-form .form-control:focus {
    outline: none;
    box-shadow: none;
}

.contact-form .submit-btn {
    background: none;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-form .submit-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.contact-phone img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contact-phone span {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .contact-content {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .contact h2 {
        font-size: 28px;
    }

    .contact-form {
        width: 100%;
    }

    .contact-form .input-group {
        max-width: 100%;
    }

    .contact-phone span {
        font-size: 18px;
    }
}

/* Footer */
.footer {
    background-color: #fff;
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: #3366ff;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-section ul li:hover {
    color: #3366ff;
}

.contact-info {
    color: #666;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 15px;
}

.qr-code {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-bottom {
    background-color: #3366ff;
    padding: 15px 0;
    text-align: center;
}

.footer-bottom p {
    color: #fff;
    margin: 0;
    font-size: 14px;
}

@media (max-width: 991px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-item {
        height: calc(100vh - 90px); /* 移动端也保持全屏 */
    }

    .section-title {
        text-align: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-content {
        text-align: center;
        margin-bottom: 2rem;
    }
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Company Business Section */
.company-business {
    background: url('../img/home/home-business-bg.jpeg') no-repeat center center;
    background-size: cover;
    padding: 80px 0; /* 从40px增加到80px */
    position: relative;
    color: #fff;
}

.company-business::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1); /* 将透明度从0.7改为0.2 */
}

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

.company-business h2 {
    font-size: 42px; /* 从32px增加到42px */
    margin-bottom: 15px; /* 增加底部间距 */
    font-weight: 600;
}

.business-subtitle {
    font-size: 18px; /* 从16px增加到18px */
    margin-bottom: 40px; /* 增加底部间距 */
    opacity: 0.9;
}

.business-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 20px;
}

.business-icon {
    flex-shrink: 0;
    width: 80px; /* 从60px增加到80px */
    height: 80px; /* 从60px增加到80px */
}

.business-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.business-item .content {
    flex: 1;
}

.business-item h3 {
    font-size: 24px; /* 从20px增加到24px */
    margin-bottom: 12px; /* 稍微增加间距 */
    color: #fff;
    font-weight: 500;
}

.business-item p {
    font-size: 16px; /* 从14px增加到16px */
    line-height: 1.7; /* 适当增加行高 */
    margin: 0;
    color: rgba(255, 255, 255, 0.9); /* 增加透明度，使文字更清晰 */
}

/* Hero section 样式 */
.hero-section {
    position: relative;
    background: url('img/contact/contact-banner.jpg') center/cover no-repeat;
    padding-top: 120px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.min-vh-50 {
    min-height: 50vh;
}

@media (max-width: 768px) {
    .company-business {
        padding: 50px 0; /* 移动端从30px增加到50px */
    }
    
    .business-icon {
        width: 65px; /* 移动端也相应增大，从50px增加到65px */
        height: 65px;
    }
    
    .business-item h3 {
        font-size: 20px;
    }
    
    .business-item p {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* Business Resources Section */
.resources {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

.resources h2 {
    font-size: 42px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 600;
}

.resources p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    max-width: 90%;
}

.resources .row {
    display: flex;
    align-items: center;
}

.resources .col-lg-6:first-child {
    padding-right: 50px;
}

.resources img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
    .resources {
        padding: 60px 0;
    }

    .resources h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .resources p {
        font-size: 15px;
        line-height: 1.6;
        max-width: 100%;
    }

    .resources .col-lg-6:first-child {
        padding-right: 15px;
        margin-bottom: 30px;
    }
}

/* Success Cases Section */
.cases {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

.cases h2 {
    font-size: 42px;
    color: #000;
    margin-bottom: 50px;
    font-weight: 600;
    text-align: center;
}

.case-card {
    margin-bottom: 30px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.case-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.case-content {
    padding: 25px;
}

.case-content h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 500;
}

.case-content .date {
    font-size: 15px;
    color: #666;
    margin: 0;
}

@media (max-width: 991px) {
    .cases {
        padding: 60px 0;
    }

    .cases h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .case-card img {
        height: 200px;
    }

    .case-content {
        padding: 20px;
    }

    .case-content h3 {
        font-size: 20px;
    }

    .case-content .date {
        font-size: 14px;
    }
}

/* Page Title Section */
.page-title {
    padding: 140px 0 80px;
    background: #fff;
    position: relative;
}

.title-decoration {
    color: #3644C4;
    font-size: 16px;
    margin-bottom: 20px;
}

.page-title h1 {
    font-size: 48px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.2;
}

.page-title .company-description {
    max-width: 100%;
}

.page-title .company-description p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 400;
}

.page-title .company-description p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .page-title {
        padding: 100px 0 50px;
    }

    .title-decoration {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .page-title h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .page-title .company-description p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
    }
} 