/* Custom styles for instructor profile display */
.instructor-details-section {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.instructor-details-section h3 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #333;
    font-size: 24px;
    border-bottom: 2px solid #ff5421;
    padding-bottom: 10px;
}

/* Grid layout for Gravity Forms data */
.gf-data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.gf-data-item {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    border-left: 3px solid #ff5421;
}

.gf-data-item.full-width {
    grid-column: 1 / -1;
}

.gf-data-item strong {
    display: block;
    color: #555;
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.gf-data-item p {
    margin: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

/* Content sections (for text areas) */
.gf-data-content {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    border-left: 3px solid #ff5421;
    margin-top: 15px;
}

.gf-data-content p {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 15px;
    line-height: 1.7;
}

.gf-data-content p:last-child {
    margin-bottom: 0;
}

/* Improve biography section */
.tutor-user-profile-content h3 {
    color: #333;
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff5421;
    padding-bottom: 10px;
}

.tutor-user-profile-content h3:first-child {
    margin-top: 0;
}

/* Document download buttons */
.gf-data-item a.tutor-btn {
    display: inline-block;
    margin-top: 5px;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .instructor-details-section {
        padding: 20px;
    }
    
    .instructor-details-section h3 {
        font-size: 20px;
    }
    
    .gf-data-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gf-data-item strong {
        font-size: 12px;
    }
    
    .gf-data-item p {
        font-size: 14px;
    }
}
