/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.about-text {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.about-text:hover {
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

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

.about-text p:last-of-type {
    margin-bottom: 0;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(147, 197, 253, 0.03) 100%);
    padding: 1rem 1.25rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(147, 197, 253, 0.08) 100%);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.highlight-item i {
    color: var(--accent-color);
    font-size: 1.4rem;
    min-width: 24px;
}

.highlight-item span {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.about-info {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.about-info:hover {
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-item:hover {
    padding-left: 0.5rem;
}

.info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    min-width: 24px;
}

.info-item div {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.info-item div strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.about-info .btn {
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
}
