.profile-section {
    width: 100%;
    min-height: calc(100vh - 170px);
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
}

@media (max-width: 576px) {
    .profile-section {
        min-height: calc(100vh - 120px);
        padding: 20px 15px;
    }
}

.profile-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

@media (max-width: 576px) {
    .profile-container {
        padding: 25px 20px;
    }
}

.profile-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 24px;
    font-weight: bold;
}

@media (max-width: 576px) {
    .profile-container h2 {
        font-size: 20px;
        margin-bottom: 25px;
    }
}

.profile-info {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

@media (max-width: 576px) {
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 0;
    }
}

.info-item label {
    color: #666;
    font-weight: bold;
    font-size: 15px;
}

@media (max-width: 576px) {
    .info-item label {
        font-size: 14px;
    }
}

.info-value {
    color: #333;
    font-size: 15px;
    text-align: right;
    word-break: break-all;
}

@media (max-width: 576px) {
    .info-value {
        font-size: 14px;
        text-align: left;
        width: 100%;
    }
}

.profile-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

@media (max-width: 576px) {
    .profile-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
    }
}

.profile-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

@media (max-width: 576px) {
    .profile-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
}

.back-btn {
    background-color: #fff;
    color: #FFA500;
    border: 2px solid #FFA500;
}

.back-btn:hover {
    background-color: #FFF3E0;
    text-decoration: none;
}

.logout-btn {
    background-color: #FFA500;
    color: #fff;
}

.logout-btn:hover {
    background-color: #FF8C00;
    text-decoration: none;
}
