/* 重置和基础样式 */
/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* 头部导航样式 */
header {
    background: linear-gradient(135deg, #4a6fa5 0%, #162447 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

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

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

.logo-image {
    height: 50px;
    margin-right: 15px;
    border-radius: 8px;
    background: linear-gradient(45deg, #2c5282, #4caf50);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 1rem;
    position: relative;
}

nav ul li a {
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
    font-weight: 500;
    color: white;
    text-decoration: none;
}

nav ul li a:hover {
    color: #4caf50;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #4caf50;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Banner样式 */
.banner {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background: linear-gradient(135deg, #1a3a5f 0%, #2c5282 100%);
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(76, 175, 80, 0.15) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E") no-repeat center center/cover;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 1rem;
}

.banner h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.banner p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #4caf50;
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    background: #3d8b40;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background: #2c5282;
    color: white;
    box-shadow: 0 4px 15px rgba(44, 82, 130, 0.3);
}

.btn-secondary:hover {
    background: #1a3a5f;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(44, 82, 130, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* 解决方案链接样式 */
.solutions-links {
    margin-top: 4rem;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

.solutions-links h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.solution-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1rem;
}

.solution-btn {
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.solution-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.solution-btn i {
    font-size: 1.2rem;
}

/* 通用区块样式 */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.4rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
    color: #1a3a5f;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #4caf50;
    border-radius: 2px;
}

/* 核心理念部分 */
.core-values {
    padding: 6rem 0;
    background: white;
}

.values-container {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.value-card {
    background: #f0f7ff;
    border-radius: 12px;
    padding: 2.8rem 2.2rem;
    width: 340px;
    text-align: center;
    transition: transform 0.4s, box-shadow 0.4s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.15) 0%, transparent 70%);
    transform: rotate(30deg);
    z-index: 1;
}

.value-icon {
    font-size: 3.5rem;
    color: #4caf50;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 2;
    transition: transform 0.4s;
}

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

.value-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: #1a3a5f;
    position: relative;
    z-index: 2;
}

.value-card p {
    position: relative;
    z-index: 2;
    color: #4a5568;
    font-size: 1.05rem;
}

/* 业务领域部分 */
.services {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #f0f7ff, #e6f2ff);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to top, rgba(26, 58, 95, 0.05), transparent);
}

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

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s;
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1a3a5f, #4caf50);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-header {
    background: linear-gradient(90deg, #2c5282, #1a3a5f);
    color: white;
    padding: 1.8rem;
    text-align: center;
}

.service-header h3 {
    font-size: 1.6rem;
    font-weight: 600;
}

.service-body {
    padding: 2.2rem;
}

.service-body ul {
    list-style-type: none;
    margin: 1.8rem 0;
}

.service-body ul li {
    padding: 0.7rem 0;
    position: relative;
    padding-left: 1.8rem;
    font-size: 1.05rem;
    color: #4a5568;
}

.service-body ul li::before {
    content: '✓';
    color: #4caf50;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* 未来展望部分 */
.future {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.future::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 90% 10%, rgba(76, 175, 80, 0.08) 0%, transparent 20%),
        radial-gradient(circle at 10% 90%, rgba(76, 175, 80, 0.08) 0%, transparent 20%);
    z-index: 1;
}

.future-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.future-text {
    flex: 1;
}

.future-text p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.future-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.future-text ul li {
    padding: 0.5rem 0;
    color: #4a5568;
    font-size: 1.1rem;
    position: relative;
}

.future-text ul li::before {
    content: '•';
    color: #4caf50;
    font-weight: bold;
    position: absolute;
    left: -1.2rem;
    font-size: 1.5rem;
}

.future-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: linear-gradient(45deg, #1a3a5f, #2c5282);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    min-height: 380px;
}

.ai-elements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
}

.ai-element {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    color: white;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.ai-element:hover {
    transform: translateY(-10px);
    background: rgba(76, 175, 80, 0.25);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.ai-element i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: #4caf50;
}

.ai-element p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* 合作伙伴部分 */
.partners {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #f0f7ff, #e6f2ff);
    text-align: center;
    position: relative;
}

.partners::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to top, rgba(26, 58, 95, 0.08), transparent);
}

.partners-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.partner-logo {
    width: 180px;
    height: 100px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    font-weight: bold;
    color: #1a3a5f;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 1.2rem;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(76, 175, 80, 0.12));
}

.partner-logo:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* 页脚部分 */
footer {
    background: linear-gradient(135deg, #0d2a4a 0%, #1a3a5f 100%);
    color: white;
    padding: 5rem 0 2.5rem;
    position: relative;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4caf50, #2c5282);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.7rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #4caf50;
    border-radius: 2px;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    font-size: 1.05rem;
}

.contact-info i {
    margin-right: 12px;
    color: #4caf50;
    min-width: 20px;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #4caf50;
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* 动画效果 */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* 响应式设计 */
@media (max-width: 992px) {
    .future-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .future-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
    }

    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #162447;
        flex-direction: column;
        padding: 1.5rem 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.2);
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 0.8rem 2rem;
    }

    .banner {
        height: auto;
        padding: 5rem 0;
    }

    .banner h2 {
        font-size: 2.8rem;
    }

    .banner p {
        font-size: 1.2rem;
    }

    .solution-btn {
        min-width: 160px;
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }

    .values-container,
    .services-grid {
        gap: 1.8rem;
    }

    .value-card,
    .service-card {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.3rem;
    }

    .banner h2 {
        font-size: 2.2rem;
    }

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

    .section-title h2 {
        font-size: 2rem;
    }

    .solution-buttons {
        flex-direction: column;
        align-items: center;
    }

    .solution-btn {
        width: 100%;
        max-width: 300px;
    }

    .partner-logo {
        width: 140px;
        height: 80px;
        font-size: 1rem;
    }
}

/* 特殊组件样式 - 财务云方案 */
.highlighted-service {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.highlighted-header {
    background: linear-gradient(90deg, #2c5282, #1a3a5f);
    color: white;
    padding: 2rem;
    text-align: center;
}

.highlighted-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.highlighted-body {
    padding: 2.5rem;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.gallery-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.gallery-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-image:hover img {
    transform: scale(1.05);
}

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

.feature-item {
    text-align: center;
    padding: 1.8rem 1.2rem;
    background: #f0f7ff;
    border-radius: 10px;
    transition: all 0.4s;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: #4caf50;
    margin-bottom: 1.2rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a3a5f;
}
:root {
  --primary-color: #1a3a5f;
  --secondary-color: #2c5282;
  --accent-color: #3182ce;
  --light-color: #ebf8ff;
  --dark-color: #1a202c;
  --success-color: #38a169;
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(26, 58, 95, 0.95);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  color: white;
}

.logo-icon {
  font-size: 1.8rem;
  margin-right: 0.8rem;
  color: #38a169;
}

.logo h1 {
  font-size: 1.4rem;
  font-weight: 600;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 1.5rem;
  position: relative;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 0;
  position: relative;
}

nav ul li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #38a169;
  transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
  width: 100%;
}

/* Banner Section */
.banner {
  height: 100vh;
  background: linear-gradient(rgba(26, 58, 95, 0.85), rgba(26, 58, 95, 0.85)),
              url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.banner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(44, 82, 130, 0.3) 0%, rgba(26, 58, 95, 0) 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.banner h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out;
}

.banner p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  background-color: #38a169;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(56, 161, 105, 0.3);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.btn:hover {
  background-color: #2f855a;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(56, 161, 105, 0.4);
}

/* Core Values Section */
.core-values {
  padding: 8rem 0;
  background-color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

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

.value-card {
  background-color: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

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

.value-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  background: var(--light-color);
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  display: inline-block;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* Services Section */
.services {
  padding: 8rem 0;
  background-color: #f8fafc;
}

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

.service-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.service-header {
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.service-header h3 {
  font-size: 1.5rem;
}

.service-body {
  padding: 2rem;
}

.service-body p {
  margin-bottom: 1.5rem;
}

.service-body ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-body ul li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.8rem;
}

.service-body ul li:before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--success-color);
}

/* Highlighted Service - Financial Cloud */
.highlighted-service {
  margin-top: 5rem;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.highlighted-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 2rem;
  text-align: center;
}

.highlighted-header h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.highlighted-body {
  padding: 2.5rem;
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  background-color: #f8fafc;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  background-color: var(--light-color);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Image Gallery for Financial Cloud */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.gallery-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-image:hover {
  transform: scale(1.03);
}

.gallery-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-image:hover img {
  transform: scale(1.05);
}

/* Future Section */
.future {
  padding: 8rem 0;
  background-color: white;
}

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

.future-text h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.future-text p {
  margin-bottom: 1.5rem;
}

.future-text ul {
  list-style: none;
  margin-bottom: 2rem;
}

.future-text ul li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.8rem;
}

.future-text ul li:before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.future-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.future-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Partners Section */
.partners {
  padding: 6rem 0;
  background-color: #f8fafc;
  text-align: center;
}

.partners p {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.partner-logo {
  background-color: white;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-width: 150px;
  text-align: center;
  font-weight: 600;
  color: var(--secondary-color);
  transition: var(--transition);
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: white;
  padding: 5rem 0 2rem;
}

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

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer-column p {
  margin-bottom: 1rem;
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-info p i {
  margin-right: 0.8rem;
  color: var(--accent-color);
  min-width: 20px;
  margin-top: 0.3rem;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .banner h2 {
    font-size: 2.8rem;
  }
  .future-content {
    grid-template-columns: 1fr;
  }
  .future-image {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    padding: 1rem 0;
  }
  nav ul {
    margin-top: 1rem;
  }
  nav ul li {
    margin: 0 0.8rem;
  }
  .banner h2 {
    font-size: 2.2rem;
  }
  .banner p {
    font-size: 1rem;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .banner h2 {
    font-size: 1.8rem;
  }
  .btn {
    padding: 0.7rem 1.5rem;
  }
  .section-title h2 {
    font-size: 1.8rem;
  }
  .value-card, .service-card {
    padding: 1.5rem;
  }
  .footer-content {
    gap: 2rem;
  }
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: white;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
  }
  nav {
    display: none;
    width: 100%;
    margin-top: 1rem;
  }
  nav.active {
    display: block;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  nav ul li {
    margin: 0.5rem 0;
  }
}