.page-hero {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 8rem 0 4rem;
    margin-top: 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.page-hero p {
    font-size: 1.3rem;
    color: rgba(234, 234, 234, 0.8);
}

.about-content {
    padding: 6rem 0;
    background: var(--primary-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(234, 234, 234, 0.8);
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--gradient-1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.values-section {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--highlight-color);
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.value-card p {
    color: rgba(234, 234, 234, 0.7);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.expertise-section {
    padding: 6rem 0;
    background: var(--primary-color);
}

.expertise-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text-light);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background: var(--gradient-1);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.expertise-card:hover {
    transform: translateY(-10px);
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.expertise-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.company-info {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.info-block p {
    font-size: 1.1rem;
    color: rgba(234, 234, 234, 0.8);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.info-block strong {
    color: var(--highlight-color);
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}
