/* Ultimate Tier Curriculum - Premium Blue/Purple Design */

.ultimate-curriculum-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 25%, #312e81 50%, #1e40af 75%, #3730a3 100%);
    position: relative;
    overflow-x: hidden;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { 
        background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 25%, #312e81 50%, #1e40af 75%, #3730a3 100%);
    }
    50% { 
        background: linear-gradient(135deg, #1e1b4b 0%, #312e81 25%, #1e40af 50%, #3730a3 75%, #7c3aed 100%);
    }
}

/* Hero Section */
.ultimate-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(30, 64, 175, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.float-element.degree {
    top: 20%;
    left: 10%;
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    animation-delay: 0s;
}

.float-element.certificate {
    top: 60%;
    right: 15%;
    background: linear-gradient(45deg, #3730a3, #1e40af);
    animation-delay: 1.5s;
}

.float-element.star {
    top: 30%;
    right: 20%;
    background: linear-gradient(45deg, #7c3aed, #a855f7);
    animation-delay: 3s;
}

.float-element.trophy {
    bottom: 30%;
    left: 15%;
    background: linear-gradient(45deg, #6366f1, #7c3aed);
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.crown-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #60a5fa;
    text-shadow: 0 2px 10px rgba(96, 165, 250, 0.5);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { color: #60a5fa; }
    50% { color: #a78bfa; }
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

/* Module Access Section */
.module-access-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.95) 20%);
    padding: 6rem 0;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container styling removed - using main responsive system from style.css instead */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 500px;
    margin: 0 auto;
}

.modules-dropdown-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-header {
    padding: 2rem;
    background: linear-gradient(135deg, #1e40af, #7c3aed);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.dropdown-header:hover::before {
    left: 100%;
}

.dropdown-header:hover {
    background: linear-gradient(135deg, #1d4ed8, #8b5cf6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.dropdown-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.dropdown-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.dropdown-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    font-weight: bold;
}

.modules-dropdown-content {
    display: none;
    padding: 2rem;
    background: white;
    max-height: 600px;
    overflow-y: auto;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.module-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.module-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
    border-color: #1e40af;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e40af, #7c3aed, #a855f7);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.module-card:hover::before {
    transform: scaleX(1);
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.module-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e40af, #7c3aed);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.module-card:hover .module-number {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.status-badge {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.module-description {
    color: #718096;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.module-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #718096;
}

.lesson-count, .module-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.module-action {
    text-align: right;
    margin-top: 1rem;
}

.action-text {
    color: #667eea;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Consultation Process */
.consultation-process {
    background: white;
    padding: 6rem 0;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.process-header p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 500px;
    margin: 0 auto;
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.03), rgba(124, 58, 237, 0.03));
    border-radius: 20px;
    border: 1px solid rgba(30, 64, 175, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.step-item:nth-child(even) {
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out forwards;
}

.step-item:nth-child(1) { animation-delay: 0.2s; }
.step-item:nth-child(2) { animation-delay: 0.4s; }
.step-item:nth-child(3) { animation-delay: 0.6s; }
.step-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.12);
    border-color: rgba(124, 58, 237, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af, #7c3aed);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 25px rgba(124, 58, 237, 0.4);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.step-content p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.forum-button {
    background: linear-gradient(135deg, #1e40af, #7c3aed);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 1;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.forum-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.forum-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    color: white !important;
}

.forum-button:hover::before {
    width: 300px;
    height: 300px;
}

.coming-soon {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.status-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    animation: readyPulse 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes readyPulse {
    0%, 100% { 
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 4px 16px rgba(16, 185, 129, 0.5);
        transform: scale(1.05);
    }
}

.timeline-badge {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.6); }
}

.step-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(30, 64, 175, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.feature {
    color: #1e40af;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(30, 64, 175, 0.02);
    border: 1px solid rgba(30, 64, 175, 0.05);
    position: relative;
}

.feature::before {
    content: '•';
    color: #1e40af;
    font-weight: bold;
    margin-right: 0.5rem;
}

.feature:hover {
    background: rgba(30, 64, 175, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.1);
}

/* Plan Loading Section */
.plan-loading-section {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    padding: 4rem 0;
}

.loading-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.loading-header {
    margin-bottom: 2rem;
}

.loading-icon {
    margin-bottom: 1rem;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #e2e8f0;
    border-left: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

.loading-content p {
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.loading-status {
    text-align: left;
    margin-bottom: 2rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #718096;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
}

.status-dot.pending {
    background: #fbb6ce;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(30, 64, 175, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
        transform: scale(1.05);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.loading-message {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(240, 147, 251, 0.05));
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.loading-message p {
    margin: 0;
    color: #4a5568;
    font-size: 0.95rem;
}

/* Support Section */
.support-section {
    background: white;
    padding: 5rem 0;
    border-top: 1px solid rgba(30, 64, 175, 0.08);
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-gentle 12s ease-in-out infinite;
    z-index: 0;
}

.support-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-gentle 15s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-20px) translateX(10px); }
    66% { transform: translateY(10px) translateX(-15px); }
}

.support-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.support-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(30, 64, 175, 0.08);
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box, 
                linear-gradient(135deg, rgba(30, 64, 175, 0.15), rgba(124, 58, 237, 0.15)) border-box;
    position: relative;
    overflow: hidden;
}

.support-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.03), transparent);
    transition: left 2s ease;
}

.support-content.animate-shimmer::before {
    left: 100%;
}

.support-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(30, 64, 175, 0.08);
}

.support-intro h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.support-intro p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1.125rem;
    max-width: 650px;
    margin: 0 auto;
}

.support-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-benefit {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.02), rgba(124, 58, 237, 0.02));
    border-radius: 16px;
    border: 1px solid rgba(30, 64, 175, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.support-benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(30, 64, 175, 0.12);
}

.benefit-header {
    margin-bottom: 1rem;
}

.benefit-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0;
    line-height: 1.3;
}

.support-benefit p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    flex-grow: 1;
}

.support-contact-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 16px;
    color: white;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #1e40af, #3b82f6) padding-box,
                linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)) border-box;
    position: relative;
    overflow: hidden;
}

.support-contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: rotate-glow 8s linear infinite;
    z-index: 0;
}

.support-contact-section > * {
    position: relative;
    z-index: 1;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-content {
    flex: 1;
}

.contact-content h4 {
    font-size: 1.375rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 1rem;
    margin: 0;
}

.contact-button {
    background: white;
    color: #1e40af;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.contact-button:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
    .support-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .support-contact-section {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .support-content {
        padding: 2rem;
    }
    
    .support-intro h3 {
        font-size: 1.75rem;
    }
}
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 16px;
    color: white;
}

.support-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.support-content p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.support-button {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(240, 147, 251, 0.3);
}

.support-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(240, 147, 251, 0.4);
    text-decoration: none;
    color: white;
}

.button-icon {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .support-card {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    /* Container padding removed - using main responsive system from style.css instead */
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2,
    .process-header h2 {
        font-size: 2rem;
    }
    
    .ultimate-hero {
        padding: 1rem;
    }
}