        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f4f4f4;
        }
        
        /* Utility Classes */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* Social Sidebar */
        .social-sidebar {
            position: fixed;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            z-index: 999;
        }
        
        .social-sidebar ul {
            list-style: none;
        }
        
        .social-sidebar li {
            width: 40px;
            background-color: #333;
            overflow: hidden;
            white-space: nowrap;
            transition: width 0.3s ease;
            border-radius: 0 5px 5px 0;
            margin-bottom: 5px;
        }
        
        .social-sidebar li:hover {
            width: 160px;
        }
        
        .social-sidebar li a {
            display: flex;
            align-items: center;
            padding: 12px;
            color: white;
            text-decoration: none;
            font-size: 14px;
        }
        
        .social-sidebar li i {
            width: 20px;
            text-align: center;
            margin-right: 10px;
            font-size: 16px;
        }
        
        .social-sidebar .wp { background: #25D366; }
        .social-sidebar .fb { background: #1877F2; }
        .social-sidebar .ins { background: #E4405F; }
        .social-sidebar .linke { background: #0A66C2; }
        .social-sidebar .yt { background: #FF0000; }

        /* Top Header */
        .top-header {
            background: white;
            padding: 1.5rem 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .top-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo img {
            height: 110px;
            transition: transform 0.3s;
        }

        .logo img:hover {
            transform: scale(1.15);
        }

        .header-contact {
            text-align: right;
        }

        .header-contact small {
            display: block;
            color: #4a5568;
            margin-bottom: 0.4rem;
            font-size: 0.95rem;
        }

        .header-contact i {
            margin-right: 0.5rem;
            color: #667eea;
        }

        .header-contact a {
            color: #667eea;
            text-decoration: none;
            font-weight: 500;
        }

        .header-contact a:hover {
            color: #5568d3;
            text-decoration: underline;
        }
        
        /* Navigation */
        .nav-bar {
            background: #2d3748;
            padding: 1rem 0;
        }
        
        .nav-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        
        .nav-links a:hover {
            color: #fbbf24;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #fbbf24;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .btn-login {
            background: #fbbf24;
            color: #2d3748;
            padding: 0.6rem 1.8rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .btn-login:hover {
            background: #f59e0b;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 5rem 2rem 3rem;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .hero p {
            font-size: 1.3rem;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        
        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Trust Bar */
        .trust-bar {
            background: white;
            padding: 2rem;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
            margin-top: -2rem;
            position: relative;
            z-index: 10;
            border-radius: 15px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }
        
        .trust-item {
            padding: 1rem;
        }
        
        .trust-item i {
            font-size: 2.5rem;
            color: #667eea;
            margin-bottom: 0.5rem;
        }
        
        .trust-item h3 {
            font-size: 2rem;
            color: #2d3748;
            margin-bottom: 0.3rem;
        }
        
        .trust-item p {
            color: #4a5568;
            font-size: 0.95rem;
        }
        
        .section {
            background: white;
            margin: 3rem 0;
            padding: 3rem 2rem;
            border-radius: 15px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        }
        
        .section h2 {
            color: #667eea;
            margin-bottom: 1rem;
            font-size: 2.2rem;
            text-align: center;
            font-weight: 700;
        }
        
        .section > p {
            text-align: center;
            color: #4a5568;
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        
        .service-card {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
            border-color: #667eea;
        }
        
        .service-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #48bb78;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
            z-index: 1;
        }
        
        .service-card-header {
            position: relative;
        }
        
        .service-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card h3 {
            color: #667eea;
            margin-bottom: 1rem;
            font-size: 1.4rem;
            font-weight: 600;
        }
        
        .service-card p {
            color: #4a5568;
            margin-bottom: 1.5rem;
            flex-grow: 1;
            line-height: 1.7;
        }
        
        .service-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }
        
        .service-features li {
            padding: 0.4rem 0;
            color: #4a5568;
            display: flex;
            align-items: center;
        }
        
        .service-features i {
            color: #48bb78;
            margin-right: 0.5rem;
        }
        
        .service-price {
            background: #f7fafc;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .service-price .price {
            font-size: 1.5rem;
            color: #667eea;
            font-weight: bold;
        }
        
        .service-price .price-note {
            font-size: 0.85rem;
            color: #718096;
            margin-top: 0.3rem;
        }
        
        .btn {
            padding: 0.85rem 1.8rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            text-align: center;
            font-weight: 600;
        }
        
        .btn-primary {
            background: #667eea;
            color: white;
        }
        
        .btn-primary:hover {
            background: #5568d3;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }
        
        .btn-success {
            background: #48bb78;
            color: white;
        }
        
        .btn-success:hover {
            background: #38a169;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
        }
        
        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-outline:hover {
            background: white;
            color: #667eea;
        }
        
        .btn-light {
            background: white;
            color: #667eea;
            font-weight: bold;
            padding: 1rem 2.5rem;
            border-radius: 25px;
            border: 2px solid #667eea;
        }
        
        .btn-light:hover {
            background: #667eea;
            color: white;
        }
        /* Testimonials */
        .testimonials {
            background: #f7fafc;
            padding: 3rem 2rem;
            border-radius: 15px;
            margin: 3rem 0;
        }
        
        .testimonials h2 {
            text-align: center;
            color: #667eea;
            margin-bottom: 3rem;
            font-size: 2.2rem;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        
        .testimonial-stars {
            color: #fbbf24;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .testimonial-text {
            color: #4a5568;
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #667eea;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: bold;
        }
        
        .testimonial-info h4 {
            color: #2d3748;
            margin-bottom: 0.2rem;
        }
        
        .testimonial-info p {
            color: #718096;
            font-size: 0.9rem;
        }
        
        /* FAQ Tool */
        .tool-card {
            background: linear-gradient(135deg, #0d6efd 0%, #5ca9fb 100%);
            color: white;
            padding: 3rem 2rem;
            border-radius: 15px;
            text-align: center;
            margin: 3rem 0;
            box-shadow: 0 5px 20px rgba(13, 110, 253, 0.2);
        }
        
        .tool-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .tool-card p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
            padding: 3rem 2rem;
            border-radius: 15px;
            margin: 3rem 0;
        }
        
        .cta-section h2 {
            color: white;
            margin-bottom: 1rem;
            font-size: 2.2rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        /* Footer */
        .footer {
            background: #2d3748;
            color: white;
            text-align: center;
            padding: 2.5rem 2rem;
            margin-top: 3rem;
        }
        
        .footer p {
            margin-bottom: 0.5rem;
        }
        
        .footer a {
            color: white;
            text-decoration: none;
            margin: 0 0.8rem;
            transition: color 0.3s ease;
        }
        
        .footer a:hover {
            color: #fbbf24;
        }
        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
        }

        .whatsapp-button {
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-button i {
            color: white;
            font-size: 2rem;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
            }
            100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
        }

        /* WhatsApp Chat Popup */
        .whatsapp-popup {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 350px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            z-index: 9998;
            display: none;
            overflow: hidden;
            animation: slideUp 0.3s ease;
        }

        .whatsapp-popup.show {
            display: block;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .whatsapp-header {
            background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
            color: white;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .whatsapp-avatar {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .whatsapp-info h3 {
            margin: 0;
            font-size: 1.1rem;
        }

        .whatsapp-info p {
            margin: 0;
            font-size: 0.85rem;
            opacity: 0.9;
        }

        .whatsapp-close {
            margin-left: auto;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            transition: transform 0.3s;
        }

        .whatsapp-close:hover {
            transform: rotate(90deg);
        }

        .whatsapp-body {
            padding: 1.5rem;
            background: #ECE5DD;
            min-height: 200px;
        }

        .whatsapp-message {
            background: white;
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            position: relative;
        }

        .whatsapp-message::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 10px;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 10px 10px 0;
            border-color: transparent white transparent transparent;
        }

        .whatsapp-message p {
            margin: 0;
            color: #333;
            line-height: 1.5;
        }

        .whatsapp-time {
            font-size: 0.75rem;
            color: #999;
            text-align: right;
            margin-top: 0.5rem;
        }

        .whatsapp-footer {
            padding: 1rem 1.5rem;
            background: white;
            border-top: 1px solid #e0e0e0;
        }

        .whatsapp-input {
            display: flex;
            gap: 0.5rem;
        }

        .whatsapp-input input {
            flex: 1;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 25px;
            font-size: 0.9rem;
        }

        .whatsapp-send {
            background: #25D366;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .whatsapp-send:hover {
            background: #128C7E;
            transform: scale(1.05);
        }

        .whatsapp-quick-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .quick-action-btn {
            background: white;
            border: 1px solid #ddd;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .quick-action-btn:hover {
            background: #25D366;
            color: white;
            border-color: #25D366;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .trust-grid {
                grid-template-columns: 1fr;
            }
            
            .top-header .container {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }
            
            .header-contact {
                text-align: center;
            }
            
            .nav-bar .container {
                flex-direction: column;
                gap: 1rem;
            }
            
            .nav-links {
                gap: 1rem;
                justify-content: center;
            }
            
            .social-sidebar {
                display: none;
            }
            
            .logo img {
                height: 50px;
            }
            
            .hero-cta {
                flex-direction: column;
            }
            
            .cta-section .btn {
                display: block;
                margin: 0.5rem auto;
                width: 100%;
                max-width: 300px;
            }

            .whatsapp-popup {
                width: calc(100% - 40px);
                right: 20px;
                left: 20px;
            }

            .whatsapp-float {
                bottom: 15px;
                right: 15px;
            }

            .whatsapp-button {
                width: 55px;
                height: 55px;
            }

            .whatsapp-button i {
                font-size: 1.8rem;
            }
        }

/* ===== Additional classes for the Special Needs Support micro-site ===== */
.sub-nav{
    background: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.9rem 0;
    position: sticky;
    top: 158px;
    z-index: 900;
    overflow-x: auto;
}
.sub-nav .container{
    display: flex;
    gap: 0.6rem;
    flex-wrap: nowrap;
}
.sub-nav a{
    white-space: nowrap;
    text-decoration: none;
    color: #4a5568;
    background: white;
    border: 1.5px solid #e2e8f0;
    padding: 0.5rem 1.1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
}
.sub-nav a:hover{ border-color: #667eea; color: #667eea; }
.sub-nav a.active{ background: #667eea; border-color: #667eea; color: white; }

.icon-badge{
    width: 54px; height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.two-col{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: start;
}
@media (max-width: 860px){ .two-col{ grid-template-columns: 1fr; } }

.info-list{ list-style: none; }
.info-list li{
    padding: 0.6rem 0;
    color: #4a5568;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    border-bottom: 1px dashed #e2e8f0;
}
.info-list li:last-child{ border-bottom: none; }
.info-list i{ color: #48bb78; margin-top: 0.2rem; }

.quote-block{
    background: #f7fafc;
    border-left: 4px solid #667eea;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    font-style: italic;
    color: #2d3748;
    font-size: 1.05rem;
}
.quote-block footer{
    all: unset;
    display: block;
    margin-top: 0.8rem;
    font-style: normal;
    font-size: 0.85rem;
    color: #718096;
}

.mini-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}
@media (max-width: 900px){ .mini-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .mini-grid{ grid-template-columns: 1fr; } }
.mini-card{
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.2rem;
    text-decoration: none;
    transition: all 0.25s ease;
    display: block;
}
.mini-card:hover{ border-color: #667eea; transform: translateY(-4px); box-shadow: 0 10px 25px rgba(102,126,234,0.15); }
.mini-card span{ display:block; font-size: 0.75rem; color: #a0aec0; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 0.3rem; text-transform: uppercase;}
.mini-card h4{ color: #2d3748; font-size: 1rem; margin: 0; }

/* Login page */
.auth-wrap{
    max-width: 460px;
    margin: -2rem auto 3rem;
    position: relative;
    z-index: 10;
    padding: 0 1rem;
}
.auth-box{
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 2.5rem 2.2rem;
}
.auth-box .icon-badge{ margin: 0 auto 1.2rem; }
.auth-box h1{
    text-align: center;
    color: #2d3748;
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}
.auth-box > p{
    text-align: center;
    color: #718096;
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
}
.form-group{ margin-bottom: 1.2rem; }
.form-group label{
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.4rem;
}
.form-group input{
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #2d3748;
}
.form-group input:focus{
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.15);
}
.form-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    margin: -0.4rem 0 1.4rem;
    color: #4a5568;
}
.form-row a{ color: #667eea; text-decoration: none; font-weight: 600; }
.form-row a:hover{ text-decoration: underline; }
.auth-divider{
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1.4rem 0;
    color: #a0aec0;
    font-size: 0.8rem;
}
.auth-divider::before, .auth-divider::after{
    content: "";
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}
.auth-foot{
    text-align: center;
    margin-top: 1.4rem;
    font-size: 0.9rem;
    color: #4a5568;
}
.auth-foot a{ color: #667eea; font-weight: 600; text-decoration: none; }

/* Dual login nav buttons (Family / Teacher) */
.nav-actions{
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}
.btn-login-teacher{
    background: #667eea;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-login-teacher:hover{
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102,126,234,0.4);
}

/* Auth-role switcher tabs, shown on login/register pages */
.role-switch{
    display: flex;
    gap: 0.5rem;
    background: #f7fafc;
    border-radius: 10px;
    padding: 0.35rem;
    margin-bottom: 1.6rem;
}
.role-switch a{
    flex: 1;
    text-align: center;
    padding: 0.6rem 0.5rem;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: #4a5568;
    transition: all 0.2s ease;
}
.role-switch a.active{
    background: white;
    color: #667eea;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.role-switch a:hover:not(.active){ color: #667eea; }

/* Inline PHP error / success banners on auth pages */
.alert-error{
    color: #c0392b;
    background: #fdecea;
    border: 1px solid #f5c6cb;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.2rem;
    font-size: 0.92rem;
}
.alert-success{
    color: #1e7e34;
    background: #e6f7ec;
    border: 1px solid #b7e4c7;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.2rem;
    font-size: 0.92rem;
}

/* Membership cards on register page, matched to brand */
.membership-cards{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.4rem;
}
@media (max-width: 520px){ .membership-cards{ grid-template-columns: 1fr; } }
.membership-card{
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    background: #fafafa;
}
.membership-card:hover{ border-color: #667eea; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(102,126,234,0.15); }
.membership-card.selected{ border-color: #667eea; background: #f0f4ff; }
.membership-card input[type="radio"]{ display: none; }
.membership-card .badge{
    position: absolute; top: 8px; right: 8px;
    font-size: 0.7rem; padding: 3px 9px; border-radius: 10px;
    background: #e2e8f0; color: #4a5568; font-weight: 600;
}
.membership-card .badge.premium{ background: #ffd700; color: #333; }
.membership-card h5{ color: #667eea; font-weight: 700; margin-bottom: 0.4rem; font-size: 1.05rem; }
.membership-card .price{ font-size: 1.5rem; font-weight: 700; color: #2d3748; margin: 0.4rem 0; }
.membership-card ul{ list-style: none; padding: 0; margin: 0.6rem 0 0; font-size: 0.85rem; }
.membership-card ul li{ padding: 0.2rem 0; color: #4a5568; }
.membership-card ul li i{ color: #48bb78; margin-right: 0.4rem; width: 16px; }
