/* Student Page Styles */

/* Hero Section */
.student-hero {
    background: linear-gradient(135deg, #0078d7 0%, #0051a8 100%);
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
}

.student-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

.student-hero h1 .italic {
    font-style: italic;
    font-weight: 300;
}

.hero-features {
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.hero-features li {
    font-size: 20px;
    padding: 12px 0;
    line-height: 1.5;
}

.hero-price {
    margin: 40px 0;
}

.price-box {
    display: inline-block;
}

.price-box .price {
    font-size: 72px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.price-box .period {
    font-size: 36px;
    font-weight: 400;
}

.price-box .price-term {
    display: block;
    font-size: 18px;
    margin-top: 10px;
    opacity: 0.9;
}

.hero-cta {
    margin: 40px 0 30px;
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
}

.hero-disclaimer {
    max-width: 700px;
    margin: 30px auto 0;
}

.disclaimer-toggle {
    background: transparent;
    border: none;
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 20px;
}

.disclaimer-toggle:hover {
    opacity: 0.8;
}

.disclaimer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 15px;
}

.disclaimer-content.active {
    max-height: 200px;
}

.disclaimer-content p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
}

/* WiFi Plans Section */
.wifi-plans {
    padding: 80px 0;
    background: #f5f5f5;
}

.wifi-plans h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.plan-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.plan-speed {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
}

.speed-number {
    font-size: 48px;
    font-weight: 700;
    color: #0078d7;
    display: block;
    line-height: 1;
}

.speed-unit {
    font-size: 20px;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #0078d7;
    font-size: 20px;
}

.feature-item span {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

/* Student Benefits Section */
.student-benefits {
    padding: 80px 0;
    background: #fff;
}

.student-benefits h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f8f8;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 64px;
    margin-bottom: 25px;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Verification Section */
.verification-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.verification-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.verification-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.verification-content > p {
    font-size: 20px;
    margin-bottom: 60px;
    opacity: 0.95;
}

.verification-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 16px;
    opacity: 0.9;
}

.verification-cta {
    margin-top: 40px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.faq-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    border: none;
    background: #fff;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: #0078d7;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 30px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0078d7 0%, #0051a8 100%);
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .verification-steps {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .student-hero h1 {
        font-size: 40px;
    }
    
    .hero-features li {
        font-size: 18px;
    }
    
    .price-box .price {
        font-size: 56px;
    }
    
    .price-box .period {
        font-size: 28px;
    }
    
    .wifi-plans h2,
    .student-benefits h2,
    .verification-content h2,
    .faq-section h2 {
        font-size: 32px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-content p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .student-hero {
        padding: 60px 0 50px;
    }
    
    .student-hero h1 {
        font-size: 32px;
    }
    
    .hero-features li {
        font-size: 16px;
    }
    
    .price-box .price {
        font-size: 48px;
    }
    
    .price-box .period {
        font-size: 24px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 15px;
    }
}