.teacher-franchise-container {
    width: 100%;
    background: radial-gradient(circle at top left, #1e3a8a 0%, transparent 40%),
                radial-gradient(circle at bottom right, #7e22ce 0%, transparent 40%),
                radial-gradient(circle at center, #facc1515 0%, transparent 50%),
                #0f172a;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    padding: 60px 20px;
}

.teacher-franchise-header {
    text-align: center;
    margin-bottom: 50px;
}

.teacher-franchise-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(to right, #60a5fa, #facc15);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.teacher-franchise-header p {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid System - Fixed to 3 columns for desktop */
.teacher-franchise-cards-grid {
    display: grid;
    /* Force 3 columns in one row for desktop */
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px;
    width: 100%;
    max-width: 1920px; 
    
}

/* Card Styling */
.teacher-franchise-card {
    background: rgba(30, 58, 138, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 40px; 
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.teacher-franchise-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 58, 138, 0.4);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.icon-wrapper {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
}

.teacher-franchise-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #f8fafc;
}

.subtitle {
    color: #60a5fa;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Revenue List */
.revenue-list {
    list-style: none;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.revenue-list li {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    color: #cbd5e1;
}

.revenue-list li strong {
    color: #facc15;
}

/* Feature List */
.features-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features-list li {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
}

.features-list li::before {
    content: "✓";
    color: #60a5fa;
    font-weight: bold;
}

.support-tag {
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.3);
    color: #facc15;
    padding: 10px;
    border-radius: 12px;
    font-size: 13px;
    text-align: center;
    font-weight: 600;
}

/* Responsive - Switch to 1 column for tablets and mobile */
@media (max-width: 1024px) {
    .teacher-franchise-cards-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    .teacher-franchise-card {
        padding: 30px;
    }
}

.main-section-container {
    width: 100%;
    background: radial-gradient(circle at top left, #1e3a8a 0%, transparent 40%),
                radial-gradient(circle at bottom right, #7e22ce 0%, transparent 40%),
                #0f172a;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 80px 20px;
}

/* Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: #60a5fa;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: linear-gradient(to right, #60a5fa, #facc15);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.section-header p {
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Grid - 3 Columns */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 1400px;
}

/* Card Design */
.pricing-card {
    background: rgba(30, 58, 138, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 58, 138, 0.3);
    border-color: #60a5fa;
}

/* Pricing Specific Elements */
.discount-badge {
    color: #ff4d4d;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.delline {
    text-decoration: line-through;
    color: #64748b;
    font-size: 1.2rem;
    margin: 5px 0;
}

.pricing-tag {
    color: #facc15;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.pricing-tag span {
    display: block;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 5px;
}

.pricing-card-title {
    font-size: 1.5rem;
    color: #f8fafc;
    margin: 15px 0 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.pricing-card-description {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    min-height: 50px;
}

/* Facilities List */
.facilities ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.facilities li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #94a3b8;
}

.tick { color: #22c55e; margin-top: 3px; }
.wrong { color: #ef4444; margin-top: 3px; }

.office-note {
    border: 2px dotted rgba(255, 255, 255, 0.3);
    padding: 12px;
    font-size: 0.85rem;
    font-style: italic;
    border-radius: 12px;
    margin-top: auto;
    color: #cbd5e1;
    text-align: center;
}

/* Responsive */
@media (max-width: 1100px) {
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .pricing-card {
        padding: 30px 20px;
    }
}