/* Premium Plan Styles */
.card.text-white {
    transition: all 0.3s ease;
}

.card.text-white:hover {
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0 0 rgba(255, 255, 255, 0.2);
}

.text-warning {
    color: #ffc107 !important;
}

.border-warning {
    border-color: #ffc107 !important;
}

.group-hover\:scale-110 {
    transition: transform 0.2s ease;
}

.card:hover .group-hover\:scale-110 {
    transform: scale(1.1) rotate(6deg);
}

.duration-200 {
    transition-duration: 200ms;
}

.btn-light:hover {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000;
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0 0 rgba(255, 255, 255, 0.2);
}

/* Preview Button Section */
.preview-section {
    background-color: #fff;
    padding: 64px 0 128px;
    margin-top: -64px;
}

.preview-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    background: #fff;
    border: 1px solid #000;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.preview-button:hover {
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0 0 rgba(0,0,0,1);
    color: #000;
    text-decoration: none;
}

/* Udemy Comparison Section */
.udemy-comparison {
    background-color: #fff;
    padding: 0;
}

.udemy-comparison h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.udemy-comparison h2 .highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
    font-style: italic;
}

.udemy-comparison h2 .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 25px;
    background: rgb(255, 228, 204);
    opacity: 1;
    z-index: -1;
    font-style: italic;
}

.comparison-info {
    max-width: 800px;
    margin: 0 auto;
}

.comparison-info .lead {
    font-size: 1.5rem;
    color: #000;
}

.hours-list {
    font-size: 1.5rem;
    color: #000;
    margin: 2rem 0;
    font-style: italic;
}

.hours-list li {
    margin-bottom: 0.5rem;
}

.pie-chart-container {
    max-width: 550px;
    margin: 3rem auto 0;
}

.pie-chart {
    border: 1px solid #000;
    box-shadow: 4px 4px 0 0 rgba(0,0,0,1);
    transition: all 0.3s ease;
    padding: 24px;
    background: #fff;
}

.pie-chart:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 0 rgba(0,0,0,1);
}

.pie-chart img, .pie-chart video {
    width: 100%;
    height: auto;
    display: block;
}

.udemy-comparison .btn-primary {
    background-color: rgb(249, 220, 248);
    border: 1px solid #000;
    color: #000;
    padding: 20px 75px;

    transition: all 0.3s ease;
    font-size: 1rem;
}

.udemy-comparison .btn-primary:hover {
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0 0 rgba(0,0,0,1);
    color: #000;
}

.text-pink {
    color: rgb(249, 220, 248);
}

.udemy-comparison p {
    font-size: 1.25rem;
}

.udemy-comparison .lead {
    font-size: 1.5rem;
}

.udemy-comparison .fw-semibold {
    font-size: 1.5rem;
} 