/* Personal Information Section Styles */
.personal-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.personal-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.personal-item:last-child {
    margin-bottom: 0;
}

.personal-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .personal-info {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .personal-item {
        font-size: 0.9rem;
    }
    
    .personal-icon {
        font-size: 1.1rem;
    }
} 