.page-hero {
    background: linear-gradient(135deg, #4080ff 0%, #66a3ff 100%);
    padding: 80px 0 100px;
    color: #fff;
    text-align: center;
}
.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.page-hero p {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}
.about-section {
    padding: 80px 0;
}
.about-section:nth-child(even) {
    background: #f8f9fa;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.about-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    text-align: center;
    border: 1px solid #f0f0f0;
}
.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(64,128,255,0.12);
    border-color: #4080ff;
}
.about-card .icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #4080ff 0%, #66a3ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 1.8rem;
}
.about-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}
.about-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}
.company-intro {
    background: #fff;
    border-radius: 20px;
    padding: 50px 45px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.04);
    border-left: 5px solid #4080ff;
    max-width: 900px;
    margin: 0 auto;
}
.company-intro p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin: 0;
}
.contact-info-block {
    background: #fff;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.04);
    border-left: 5px solid #22c55e;
    max-width: 900px;
    margin: 0 auto;
}
.contact-info-block h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
}
.contact-info-block .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f2f2f2;
    color: #555;
    font-size: 0.95rem;
}
.contact-info-block .contact-item:last-child {
    border-bottom: none;
}
.contact-info-block .contact-item i {
    width: 40px;
    height: 40px;
    background: #f0f4ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4080ff;
    font-size: 1.1rem;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .page-hero h1 { font-size: 2rem; }
    .about-grid { grid-template-columns: 1fr; }
    .company-intro, .contact-info-block { padding: 30px 25px; }
}
