.about-section {
    background-color: #ffffff;
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.sub-title {
    color: #fcc419; /* Gold accent */
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
}

.about-section h2 {
    color: #0a192f;
    font-size: 36px;
    margin: 10px 0;
}

.tagline {
    color: #64748b;
    font-size: 18px;
    margin-bottom: 50px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.about-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 35px;
    color: #0a192f;
    margin-bottom: 20px;
}

.about-card h3 {
    color: #0a192f;
    margin-bottom: 15px;
}

.detailed-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #475569;
    font-size: 17px;
}

.contact-strip {
    margin-top: 40px;
    padding: 20px;
    background: #0a192f;
    color: white;
    display: inline-block;
    border-radius: 50px;
    padding: 15px 40px;
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-section h2 { font-size: 28px; }
}