/* About Hero Section */
.about-hero {
    height: 50vh; /* 固定高度为500px */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('./assets/about-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px; /* 调整渐变高度 */
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 1));
}

.hero-content {
    max-width: 1200px;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 300px; /* 控制内容区域的高度 */
}

.hero-top {
    text-align: center;
}

.hero-top h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-top p {
    font-size: 1.5rem;
    opacity: 0.9;
}

.hero-bottom {
    margin-top: auto; /* 将底部内容推到底部 */
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    color:#666
}

/* Company Profile Section */
.company-profile {
    padding: 6rem 0;
    background: #fff;
}

.profile-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.profile-left {
    position: sticky;
    top: 2rem;
}

.profile-left h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.profile-intro {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.profile-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.profile-item {
    padding: 2.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.profile-item p {
    color: #666;
    line-height: 1.7;
}

/* Professional Advantages Section */
.professional-advantages {
    padding: 6rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                url('https://images.unsplash.com/photo-1557683316-973673baf926?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.advantages-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.advantages-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.advantage-item h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

/* Analyst Team Section */
.analyst-team {
    padding: 6rem 0;
    background: #fff;
    overflow: hidden;
}

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

.team-left {
    padding-right: 2rem;
}

.team-left h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 2rem;
}

.team-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.team-description p {
    margin-bottom: 1.5rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-stats .stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.team-stats .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.team-stats .label {
    font-size: 1rem;
    color: #666;
}

.team-right {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.team-image {
    position: absolute;
    top: 0;
    right: -20%;
    width: 120%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    border-radius: 20px 0 0 20px;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
}

/* Service Philosophy Section */
.service-philosophy {
    padding: 6rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)),
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.philosophy-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.philosophy-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.philosophy-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        height: 250px;
    }
    
    .hero-top h1 {
        font-size: 3rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .profile-content,
    .advantages-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-left {
        position: static;
    }

    .team-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .team-left {
        padding-right: 0;
    }

    .team-right {
        min-height: 400px;
    }

    .team-image {
        right: 0;
        width: 100%;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        height: 200px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .profile-left h2,
    .advantages-content h2,
    .team-left h2,
    .philosophy-content h2 {
        font-size: 2.2rem;
    }

    .team-left h2 {
        font-size: 2.2rem;
    }

    .team-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-right {
        min-height: 300px;
    }

    .about-hero {
        height: 400px; /* 移动端稍微降低高度 */
    }
}

@media (max-width: 576px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-content {
        height: auto;
        gap: 2rem;
    }

    .about-hero {
        height: 350px; /* 更小屏幕进一步降低高度 */
    }
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
}

/* Company Overview */
.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--background);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.overview-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Timeline Section */
.timeline-section {
    background: var(--background-light);
    padding: var(--spacing-lg) 0;
}

.timeline {
    position: relative;
    padding: var(--spacing-lg) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-lg);
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: var(--spacing-lg);
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: var(--spacing-lg);
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    right: -10px;
    top: 0;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    background: var(--background);
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.value-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--background);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.value-item h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.value-item p {
    color: var(--text-secondary);
}

/* Who We Are Section - Image Styles */
.who-we-are-images {
    width: 100%;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.image-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.grid-img-1 {
    grid-column: 1 / 2;
}

.grid-img-2 {
    grid-column: 2 / 3;
}

.grid-img-3 {
    grid-column: 1 / 3;
    height: 400px !important; /* 底部大图特殊高度 */
}

/* Hover Effects */
.image-grid img:hover {
    transform: scale(1.02);
}

/* Who We Are Section - Text Styles */
.who-we-are {
    padding: var(--spacing-xl) 0;
}

.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.who-we-are-text {
    padding-right: var(--spacing-xl);
}

.who-we-are-text h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.who-we-are-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.achievement-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.achievement-item .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.achievement-item .label {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .who-we-are-text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .who-we-are-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .who-we-are-text h2 {
        font-size: 2rem;
    }

    .who-we-are-text {
        text-align: center;
    }

    .achievement-grid {
        margin-top: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .achievement-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .achievement-item {
        align-items: center;
    }

    .who-we-are-text h2 {
        font-size: 1.75rem;
    }
}

/* Our Journey Section */
.our-journey {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
}

.journey-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.journey-year {
    background: var(--primary);
    color: white;
    padding: var(--spacing-md);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.journey-content {
    padding: var(--spacing-lg);
}

.journey-content h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.journey-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .journey-year {
        padding: var(--spacing-sm);
        font-size: 1.25rem;
    }

    .journey-content {
        padding: var(--spacing-md);
    }

    .journey-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .journey-grid {
        grid-template-columns: 1fr;
    }

    .journey-card {
        max-width: 100%;
    }
}

/* Our Story Section */
.our-story {
    padding: var(--spacing-xl) 0;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.story-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-lg);
    background: var(--background-light);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.story-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.story-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .story-image {
        height: 250px;
    }

    .story-content {
        padding: var(--spacing-md);
    }

    .story-content h3 {
        font-size: 1.25rem;
    }

    .story-content p {
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        height: 250px;
        margin-top: 60px;
    }

    .about-hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 200px;
    }

    .about-hero-content h1 {
        font-size: 1.75rem;
    }

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

/* Mobile Optimization for About Page */
@media (max-width: 768px) {
    /* Hero Section */
    .about-hero {
        height: 250px;  /* 减小头部高度 */
        margin-top: 60px;  /* 调整导航栏下方间距 */
    }

    .about-hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }

    /* Who We Are Section */
    .who-we-are {
        padding: var(--spacing-lg) 0;
    }

    .who-we-are-content {
        grid-template-columns: 1fr;  /* 改为单列布局 */
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }

    .who-we-are-text {
        text-align: center;
        padding: 0;
    }

    .who-we-are-text h2 {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-md);
    }

    .who-we-are-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: var(--spacing-md);
    }

    .achievement-grid {
        grid-template-columns: repeat(3, 1fr);  /* 保持三列布局 */
        gap: var(--spacing-sm);
        margin-top: var(--spacing-lg);
    }

    .achievement-item .number {
        font-size: 1.5rem;  /* 调整数字大小 */
    }

    .achievement-item .label {
        font-size: 0.9rem;
    }

    /* Image Grid */
    .image-grid {
        gap: var(--spacing-sm);
        margin-top: var(--spacing-md);
    }

    .image-grid img {
        height: 200px;  /* 调整图片高度 */
    }

    .grid-img-3 {
        height: 250px !important;  /* 调整底部大图高度 */
    }

    /* Our Story Section */
    .our-story {
        padding: var(--spacing-lg) 0;
    }

    .section-header {
        padding: 0 var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }

    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .story-grid {
        grid-template-columns: 1fr;  /* 改为单列布局 */
        gap: var(--spacing-md);
        padding: 0 var(--spacing-md);
    }

    .story-image {
        height: 200px;  /* 调整图片高度 */
    }

    .story-content {
        padding: var(--spacing-md);
    }

    .story-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .story-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* 超小屏幕优化 */
@media (max-width: 480px) {
    .about-hero {
        height: 200px;
    }

    .about-hero-content h1 {
        font-size: 1.75rem;
    }

    .achievement-grid {
        grid-template-columns: repeat(3, 1fr);  /* 保持三列 */
    }

    .achievement-item .number {
        font-size: 1.25rem;
    }

    .achievement-item .label {
        font-size: 0.8rem;
    }

    .image-grid img {
        height: 180px;
    }

    .grid-img-3 {
        height: 220px !important;
    }

    .story-image {
        height: 180px;
    }
}

/* 处理极小屏幕 */
@media (max-width: 360px) {
    .achievement-grid {
        gap: var(--spacing-xs);
    }

    .achievement-item .number {
        font-size: 1.1rem;
    }

    .achievement-item .label {
        font-size: 0.75rem;
    }
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    margin-top:100px;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Main Content */
.about-content {
    padding: 5rem 0;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* About Text Section */
.about-text h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Expertise Highlights */
.expertise-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Service Cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

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

.service-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    text-align: center;
    padding: 4rem 0;
}

.why-choose-us h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.reason-item {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.reason-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.reason-icon i {
    font-size: 1.75rem;
    color: white;
}

.reason-item h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.reason-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.about-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 90vh;
    }

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

    .expertise-highlights,
    .service-cards {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .about-cta h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 3rem 0;
    }

    .about-text h2 {
        font-size: 1.75rem;
    }

    .service-card,
    .reason-item {
        padding: 1.5rem;
    }
}

/* Achievements Section */
.achievements {
    padding: 5rem 0;
    background: var(--background-light);
}

.achievements h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.achievement-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.achievement-number {
    margin-bottom: 1.5rem;
}

.achievement-number .counter {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
}

.achievement-number .unit {
    font-size: 1.5rem;
    color: var(--primary);
    margin-left: 0.5rem;
}

.achievement-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.achievement-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Investment Scope */
.investment-scope {
    margin-bottom: 4rem;
}

.investment-scope h3 {
    text-align: center;
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.scope-item {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.scope-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.scope-item h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
}

/* Trust Content */
.trust-content {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.trust-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.trust-text p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.client-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.client-type {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.client-type:hover {
    transform: translateY(-5px);
}

.client-type i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.client-type h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .scope-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .client-types {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .scope-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-types {
        grid-template-columns: 1fr;
    }

    .trust-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .scope-grid {
        grid-template-columns: 1fr;
    }

    .achievement-number .counter {
        font-size: 2.5rem;
    }

    .achievement-number .unit {
        font-size: 1.25rem;
    }
} 