/* Educational License Page Styles */

/* Hero Section */
.edu-hero-section {
    text-align: center;
    padding: 40px 20px 50px;
    margin-bottom: 50px;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}



.edu-hero-section h1 {
    font-size: 2.8em;
    color: #0866A0;
    margin: 0 0 20px 0;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.edu-hero-subtitle {
    font-size: 1.25em;
    color: #0A5991;
    margin: 0;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    .edu-hero-section h1 {
        font-size: 2em;
    }

    .edu-hero-subtitle {
        font-size: 1.1em;
    }

    .edu-info-box {
        max-width: 100%;
    }
}

/* Offer Box */
.edu-offer-box {
    max-width: 650px;
    margin: 0 auto 50px;
    padding: 40px 35px;
    background: #FFFFFF;
    border: 2px solid #E8F4F8;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}



.edu-offer-price {
    margin: 25px 0 30px;
}

.edu-price-amount {
    font-size: 4em;
    font-weight: bold;
    color: #00AA00;
    display: block;
    line-height: 0.9;
    letter-spacing: -1px;
}

.edu-price-label {
    font-size: 1.3em;
    color: #0A5991;
    display: block;
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.edu-offer-detail {
    font-size: 1.25em;
    color: #333;
    margin: 20px 0 25px;
    font-weight: 500;
}

.edu-offer-detail strike {
    color: #999;
    text-decoration-thickness: 2px;
}

.edu-offer-note {
    font-size: 0.95em;
    color: #555;
    margin: 20px 0 0 0;
    padding: 16px 20px;
    background: #F8F9FA;
    border: 1px solid #E9ECEF;
    border-radius: 8px;
    text-align: left;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* General Section */
.edu-section {
    margin: 50px 0;
}

.edu-section h2 {
    font-size: 2em;
    color: #0866A0;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.3px;
    border-bottom: 3px solid #E8F4F8;
    padding-bottom: 10px;
}

/* Requirements List */
.edu-requirements-list {
list-style: none;
padding: 0;
margin: 0;
background: #FFFFFF;
border: 2px solid #E8F4F8;
padding: 30px 25px;
border-radius: 12px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.edu-requirements-list li {
padding: 12px 0 12px 35px;
position: relative;
font-size: 1.05em;
line-height: 1.6;
    color: #333;
    border-bottom: 1px solid #F0F0F0;
}

.edu-requirements-list li:last-child {
border-bottom: none;
}

.edu-requirements-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    color: #00AA00;
    font-weight: bold;
    font-size: 1.4em;
    background: #F0FFF0;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Info Box */
.edu-info-box {
    background: #F0F0F0;
    border: 1px solid #707070;
    padding: 25px;
    margin: 30px 0;
    font-size: 0.9em;
    color: #000000;
    max-width: 80%;
}

.edu-info-box h3 {
    margin: 0 0 15px 0;
    color: #000000;
    font-size: 1.3em;
}

.edu-info-box p {
    margin: 10px 0;
}

.edu-pro-tip {
    background: rgba(255, 255, 255, 0.5);
    padding: 10px;
    border-left: 1px solid #707070;
    margin-top: 15px !important;
}

/* Steps */
.edu-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 25px;
}

@media screen and (max-width: 768px) {
    .edu-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.edu-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #FFFFFF;
    border: 2px solid #E8F4F8;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.edu-step-number {
    background: linear-gradient(135deg, #0866A0 0%, #0A5991 100%);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.4em;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(8, 102, 160, 0.3);
}

.edu-step-content strong {
    display: block;
    color: #0866A0;
    font-size: 1.15em;
    margin-bottom: 8px;
    font-weight: 600;
}

.edu-step-content p {
    margin: 0;
    font-size: 1em;
    color: #666;
    line-height: 1.5;
}

/* CTA Section */
.edu-cta-section {
text-align: center;
margin: 50px 0;
}

.edu-apply-button {
display: inline-block;
background: #FFFFFF;
color: #0866A0;
font-weight: bold;
font-size: 1.3em;
text-decoration: none;
padding: 12px 28px;
border: 3px solid #000000;
border-radius: 0;
box-shadow: 4px 4px 0px #000000;
font-family: "PixelFontSans", "Comic Sans MS", sans-serif;
position: relative;
}

.edu-apply-button:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #000000;
}

.edu-cta-note {
margin-top: 15px;
    font-size: 0.9em;
    color: #666;
}

/* FAQ Section */
.edu-faq-section {
    margin: 50px 0;
}

.edu-faq-section h2 {
    font-size: 2em;
    color: #0866A0;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.3px;
    border-bottom: 3px solid #E8F4F8;
    padding-bottom: 10px;
}

.edu-faq-item {
    background: #FFFFFF;
    border: 2px solid #E8F4F8;
    padding: 25px 20px;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.edu-faq-question {
    font-weight: 600;
    color: #0866A0;
    font-size: 1.15em;
    margin-bottom: 12px;
    line-height: 1.4;
}

.edu-faq-answer {
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-size: 1.05em;
}

/* Contact Section */
.edu-contact-section {
    margin: 40px 0;
    text-align: center;
}

.edu-contact-section p {
    margin: 20px 0;
}

.edu-contact-section img {
    margin: 0 10px;
}
