/* Record Label Section Styles */
.record-label-section {
    position: relative;
    padding: 60px 0;
}

.record-label-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.record-label-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.record-label-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.record-label-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.record-label-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.record-label-card i {
    font-size: 3rem;
    color: #00dbde;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .record-label-section h2 {
        font-size: 1.8rem;
    }
    
    .record-label-card {
        margin-bottom: 20px;
    }
}
