/* Identity Section (Who We Are / What We Do) */
.identity-section {
    padding: 60px 0;
    background-color: var(--white);
    border-bottom: 1px solid #eee;
}

.identity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.identity-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: var(--bg-color); /* Light gray */
    border-radius: var(--border-radius);
    transition: transform 0.3s, box-shadow 0.3s;
}

.identity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.identity-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(13, 59, 102, 0.2);
}

.identity-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.identity-mm {
    font-family: 'Merriweather', serif;
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.identity-content p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.btn-learn-more {
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.btn-learn-more i {
    transition: transform 0.3s ease;
}

.btn-learn-more:hover {
    color: var(--accent-hover);
}

.btn-learn-more:hover i {
    transform: translateX(5px); /* Move clicking/arrow icon to the right */
}

@media (max-width: 768px) {
    .identity-grid {
        grid-template-columns: 1fr;
    }
    .identity-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
