:root {
    --primary-color: #2E3192;
    --secondary-color: #00AEEF;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-light: #666666;
    --light-blue: #E8F4FD;
    --dark-blue: #1A1C5B;
}

.about-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 600;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    color: var(--white);
}

.about-hero-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
}

.our-work {
    padding: 80px 20px;
    background: var(--white);
}

.work-container {
    max-width: 1200px;
    margin: 0 auto;
}

.work-header {
    text-align: center;
    margin-bottom: 60px;
}

.work-header h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.work-header p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.work-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.work-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(46, 49, 146, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 49, 146, 0.05);
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(46, 49, 146, 0.12);
}

.work-icon {
    width: 100%;
    height: 150px;
    margin-bottom: 25px;
    border-radius: 15px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.work-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.work-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.company-info {
    padding: 80px 20px;
    background: var(--light-blue);
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.info-header {
    text-align: center;
    margin-bottom: 60px;
}

.info-header h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-item {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(46, 49, 146, 0.06);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 49, 146, 0.1);
}

.info-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.info-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .work-cards,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-hero-content h2 {
        font-size: 32px;
    }
    
    .work-header h2,
    .info-header h2 {
        font-size: 28px;
    }
}
