.profile-section {
    padding: 0px 60px;
    background-color: #0f172a;
    color: #e2e8f0;
    border-bottom: 1px solid #334155;
}

.profile-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 768px) {
    .profile-container {
        flex-direction: row;
        align-items: flex-start;
    }
}

.profile-image {
    flex: 1;
    max-width: 300px;
    margin: auto;
}

.profile-photo {
    width: 100%;
    border-radius: 12px;
    border: 2px solid #60a5fa;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.profile-content {
    flex: 2;
}

.profile-name {
    font-size: 2rem;
    color: #60a5fa;
    margin-bottom: 10px;
    font-weight: bold;
}


.profile-title {
    font-size: 1.2rem;
    color: #7dd3fc;
    margin-bottom: 20px;
}

.profile-bio {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.profile-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .profile-info-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.info-card {
    background-color: #1e293b;
    border: 1px solid #60a5fa;
    padding: 16px;
    border-radius: 8px;
}

.info-card h3 {
    color: #60a5fa;
    margin-bottom: 8px;
    font-weight: bold;
}

.profile-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-blue {
    background-color: #2563eb;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-blue:hover {
    background-color: #3b82f6;
}

.btn-outline {
    background-color: transparent;
    color: #60a5fa;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid #60a5fa;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-outline:hover {
    background-color: #1e293b;
}
