/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* ===== 导航栏样式 - 修正版本 ===== */

/* Header 基础样式 */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* 导航容器 */
.navbar {
    padding: 1rem 0;
    transition: padding 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo 样式 */
.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 5px;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    color: #1e3c72;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    margin-bottom: -5px;
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-text .tagline {
    color: #666;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

/* 导航菜单 */
.nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav li {
    position: relative;
    margin: 0 5px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

/* 普通链接悬停效果 */
.nav a:hover {
    color: #1e3c72;
    background: rgba(30, 60, 114, 0.1);
    transform: translateY(-2px);
}

/* 活跃状态样式 */
.nav a.active {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

.nav a.active:hover {
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.4);
}

/* 下划线动画效果（仅非活跃链接） */
.nav a:not(.active)::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav a:not(.active):hover::after {
    width: 60%;
}

/* 汉堡菜单样式 */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: none;
    border: none;
}

.hamburger:hover {
    background: rgba(30, 60, 114, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

/* 汉堡菜单激活状态 */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* 滚动时的样式变化 */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.header.scrolled .navbar {
    padding: 0.7rem 0;
}

.header.scrolled .logo-img {
    width: 40px;
    height: 40px;
}

.header.scrolled .logo-text h1 {
    font-size: 1.6rem;
}

.header.scrolled .logo-text .tagline {
    font-size: 0.8rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2c5aa0;
}

/* Hero Banner - 左侧布局 */
.hero-banner {
    background-image: url('imgs/indexbanner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    background: rgba(30, 60, 114, 0.75);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-banner .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-left {
    max-width: 600px;
    text-align: left;
    color: white;
}

.hero-banner .hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    animation: fadeInLeft 1s ease-out;
}

.hero-banner .hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e8f4f8;
    opacity: 0.95;
    animation: fadeInLeft 1s ease-out 0.3s both;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* 动画效果 */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@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);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #2c5aa0;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: #2c5aa0;
    color: white;
}

.btn-primary:hover {
    background: #1e3f73;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.btn-secondary:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.financial-icon {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(44, 90, 160, 0.3);
    animation: float 3s ease-in-out infinite;
}

.icon-circle span {
    font-size: 4rem;
    color: white;
    font-weight: bold;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Financial Services Introduction Section - 优化样式 */
.financial-services-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.financial-services-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298, #1e3c72);
}

.financial-services-intro .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.financial-services-intro .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    border-radius: 2px;
}

.services-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
    text-justify: inter-word;
}

.services-description p:first-child {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}

.services-description p:last-child {
    margin-bottom: 0;
}

/* Features Section - 优化样式 */
.features {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
    font-weight: bold;
}

.features .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.features .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 60, 114, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

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

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

.service-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.service-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.service-link:hover {
    border-bottom-color: white;
}

/* Stats Section - 优化样式 */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #2c5aa0;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* ===== 响应式设计 ===== */

/* 平板设备 */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav a {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    
    .logo h1 {
        font-size: 1.6rem;
    }
    
    .logo .tagline {
        font-size: 0.8rem;
    }
}

/* 移动设备 */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav ul {
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
    }
    
    .nav li {
        width: 100%;
        margin: 0;
    }
    
    .nav a {
        padding: 15px 30px;
        border-radius: 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        width: 100%;
        text-align: left;
    }
    
    .nav a:hover {
        background: rgba(30, 60, 114, 0.1);
        transform: none;
        padding-left: 40px;
    }
    
    .nav a.active {
        background: linear-gradient(135deg, #1e3c72, #2a5298);
        color: white;
    }
    
    .nav a.active:hover {
        padding-left: 40px;
    }
    
    .nav a:not(.active)::after {
        display: none;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .logo .tagline {
        font-size: 0.75rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-banner {
        height: 60vh;
    }
    
    .hero-banner .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-banner .hero-description {
        font-size: 1rem;
    }
    
    .hero-left {
        max-width: 100%;
        text-align: center;
    }
    
    .financial-services-intro {
        padding: 60px 0;
    }
    
    .financial-services-intro .section-title,
    .features .section-title {
        font-size: 2rem;
    }
    
    .services-description p {
        font-size: 1rem;
        text-align: left;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .stats {
        padding: 60px 0;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 小屏手机 */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo .tagline {
        font-size: 0.7rem;
    }
    
    .nav a {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .hero-banner {
        height: 50vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-banner .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-banner .hero-description {
        font-size: 0.95rem;
    }
    
    .financial-services-intro,
    .features {
        padding: 60px 0;
    }
    
    .hero-overlay {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* 大屏幕优化 */
@media (min-width: 1400px) {
    .nav a {
        padding: 14px 25px;
        font-size: 1.1rem;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .logo .tagline {
        font-size: 0.9rem;
    }
}

/* ===== 动画效果 ===== */

/* 页面加载时的导航栏动画 */
.header {
    animation: slideDown 0.8s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* 导航项逐个显示动画 */
.nav li {
    animation: navFadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.nav li:nth-child(1) { animation-delay: 0.1s; }
.nav li:nth-child(2) { animation-delay: 0.2s; }
.nav li:nth-child(3) { animation-delay: 0.3s; }
.nav li:nth-child(4) { animation-delay: 0.4s; }
.nav li:nth-child(5) { animation-delay: 0.5s; }

@keyframes navFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 移动端时禁用动画以提高性能 */
@media (max-width: 768px) {
    .nav li {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* About页面样式 */
.about {
    padding: 120px 0 80px;
    background: #f8f9fa;
}

/* About页面banner样式 */
.about-hero-banner {
    background-image: url('imgs/aboutbanner.jpg'); /* 使用about页面专用banner */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.about-banner-overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* About Hero Section */
.about-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 15px;
    margin: 0 -20px 4rem -20px;
}

.about-hero .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.about-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Company Story Section */
.company-story {
    margin-bottom: 5rem;
}

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

.story-text h3 {
    font-size: 2.2rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Our Story居中样式 */
.story-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.story-content-centered h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 600;
}

.story-content-centered p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Timeline Visual */
.timeline-visual {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item .year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3c72;
    min-width: 80px;
}

.timeline-item .milestone {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Mission Vision Values Section */
.mvv-section {
    margin-bottom: 5rem;
}

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

.mvv-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #1e3c72;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 60, 114, 0.15);
}

.mvv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* 更新MVV图标样式 */
.mvv-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 30px;
}

.mvv-card h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mvv-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.mvv-card ul {
    text-align: left;
    color: #666;
    line-height: 1.8;
}

.mvv-card ul li {
    margin-bottom: 0.5rem;
}

/* Services页面banner样式 */
.services-hero-banner {
    background-image: url('imgs/servicebanner.jpg'); /* 使用services页面专用banner */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.services-banner-overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
    text-align: center;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.services-description {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Main Services Section */
.main-services {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.service-detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.service-detail-card h3 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.service-summary {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features,
.service-benefits,
.service-eligibility {
    margin-bottom: 2rem;
}

.service-features h4,
.service-benefits h4,
.service-eligibility h4 {
    color: #2c5aa0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-features ul,
.service-benefits ul,
.service-eligibility ul {
    list-style: none;
    padding: 0;
}

.service-features li,
.service-benefits li,
.service-eligibility li {
    color: #555;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before,
.service-benefits li:before,
.service-eligibility li:before {
    content: "✓";
    color: #2c5aa0;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-cta {
    background: #2c5aa0;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    margin-top: 1rem;
}

.service-cta:hover {
    background: #1e3f73;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

/* Loan Process Section */
.loan-process {
    padding: 80px 0;
    background: white;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    text-align: center;
    font-size: 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Why Choose Services Section */
.why-choose-services {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon img {
    transform: scale(1.1);
}

.benefit-item h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Services CTA Section */
.services-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.services-cta .cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta .cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.services-cta .btn-primary {
    background: white;
    color: #2c5aa0;
}

.services-cta .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.services-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.services-cta .btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .services-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-hero-banner,
    .services-hero-banner {
        height: 50vh;
    }
    
    .story-content-centered h3 {
        font-size: 2rem;
    }
    
    .story-content-centered p {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 100px 0 60px;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
    }
    
    .service-detail-card {
        padding: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .services-cta .cta-content h3 {
        font-size: 2rem;
    }
    
    .services-cta .cta-content p {
        font-size: 1.1rem;
    }
}

/* Leadership Section */
.leadership-section {
    margin-bottom: 5rem;
}

.subsection-title {
    font-size: 2.2rem;
    color: #1e3c72;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

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

.leader-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.leader-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.leader-card h4 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.leader-title {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.leader-bio {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.leader-credentials {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
    display: inline-block;
}

/* Regulatory Section */
.regulatory-section {
    margin-bottom: 5rem;
}

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

.regulatory-info {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.regulatory-info h4 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 600;
}

.regulatory-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.reg-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.reg-item {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #666;
}

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

.compliance-badges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.badge-icon {
    font-size: 2rem;
    min-width: 50px;
}

.badge-text strong {
    display: block;
    color: #1e3c72;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.badge-text span {
    color: #666;
    font-size: 0.9rem;
}

/* Awards Section */
.awards-section {
    margin-bottom: 5rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.award-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid #1e3c72;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.award-year {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.award-item h4 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.award-item p {
    color: #666;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: #1e3c72;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1e3c72;
    transform: translateY(-2px);
}



/* 响应式设计 */
@media (max-width: 768px) {
    .about {
        padding: 100px 0 60px;
    }
    
    .about-hero {
        margin: 0 0 3rem 0;
        padding: 2rem 1rem;
    }
    
    .about-hero .section-title {
        font-size: 2.2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .regulatory-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .about-hero .section-title {
        font-size: 1.8rem;
    }
    
    .subsection-title {
        font-size: 1.8rem;
    }
    
    .story-text h3 {
        font-size: 1.8rem;
    }
    
    .mvv-card,
    .leader-card,
    .regulatory-info {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
}

/* Products Page Styles */
.products-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

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

.products-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.products-categories {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.category-card h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.product-section {
    padding: 80px 0;
}

.product-section h2 {
    text-align: center;
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.product-card h3 {
    color: #1e3c72;
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.product-cta {
    margin-top: 25px;
    text-align: center;
}

.lending-section {
    background: #f8f9fa;
}

.product-features-section {
    padding: 80px 0;
    background: white;
}

.product-features-section h2 {
    text-align: center;
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-item h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.comparison-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.comparison-section h2 {
    text-align: center;
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table table {
    width: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.comparison-table th {
    background: #1e3c72;
    color: white;
    font-weight: 600;
}

.comparison-table tr:hover {
    background: #f8f9fa;
}

.products-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
}

.products-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.products-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: #1e3c72;
    border: 2px solid #1e3c72;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #1e3c72;
    color: white;
    transform: translateY(-2px);
}

.products-cta .btn-secondary {
    color: white;
    border-color: white;
}

.products-cta .btn-secondary:hover {
    background: white;
    color: #1e3c72;
}

/* Responsive Design for Products */
@media (max-width: 768px) {
    .products-hero h1 {
        font-size: 2.2rem;
    }
    
    .products-hero p {
        font-size: 1rem;
    }
    
    .category-grid,
    .products-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .product-section h2,
    .product-features-section h2,
    .comparison-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 15px;
    }
}

/* News Page Styles */
.news-hero-banner {
    background-image: url('imgs/newsbanner.jpg'); /* 使用news页面专用banner */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.news-banner-overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.news-hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
    text-align: center;
}

.news-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.news-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.news-categories {
    padding: 80px 0;
    background: #f8f9fa;
}

.news-section {
    padding: 80px 0;
    background: white;
}

.news-section h2 {
    text-align: center;
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.news-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    border-radius: 2px;
}

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

.news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.news-image {
    height: auto;
    min-height: 60px; /* 减小高度，只需要足够显示日期 */
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    position: relative;
    padding: 0;
}

.news-date {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 0 4px 4px 0;
}

.news-content {
    padding: 25px;
    flex-grow: 1; /* 让内容区域占据剩余空间 */
    display: flex;
    flex-direction: column;
}

.news-content h3 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1; /* 让段落占据剩余空间 */
}

.read-more {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    position: relative;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1e3c72;
    transition: width 0.3s ease;
}

.read-more:hover::after {
    width: 100%;
}

.insights-section {
    background: #f8f9fa;
}

.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form .btn-primary {
    background: white;
    color: #1e3c72;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design for News Page */
@media (max-width: 768px) {
    .news-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .news-hero-content p {
        font-size: 1rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form .btn-primary {
        width: 100%;
    }
}