/* ==================== EDUCATION SECTION ==================== */

.education-card {
    background: rgba(42, 42, 42, 0.8);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #525252;
    text-align: center;
}

.degree-title {
    font-size: 20px;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 12px;
    line-height: 1.2;
}

.institution-name {
    font-size: 16px;
    font-weight: 600;
    color: #e5e5e5;
    margin-bottom: 8px;
}

.education-location, .graduation-date, .education-type {
    font-size: 13px;
    color: #a3a3a3;
    margin-bottom: 6px;
}

.foundation-content {
    background: rgba(42, 42, 42, 0.6);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #525252;
}

.foundation-content p {
    color: #e5e5e5;
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 14px;
}

.foundation-content ul {
    margin-left: 18px;
    color: #e5e5e5;
}

.foundation-content li {
    margin-bottom: 6px;
    line-height: 1.4;
    font-size: 13px;
}

/* ==================== CONTACT SECTION ==================== */

.contact-card {
    background: rgba(42, 42, 42, 0.8);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #525252;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(82, 82, 82, 0.5);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 13px;
    color: #a3a3a3;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 15px;
    color: #e5e5e5;
    font-weight: 500;
}

.contact-value a {
    color: #f97316;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-value a:hover {
    color: #ea580c;
    text-decoration: underline;
}

.availability-content {
    background: rgba(42, 42, 42, 0.6);
    padding: 18px;
    border-radius: 10px;
    border: 1px solid #525252;
}

.availability-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #e5e5e5;
    line-height: 1.4;
    font-size: 14px;
}

.availability-icon {
    font-size: 18px;
    width: 30px;
    flex-shrink: 0;
}