/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h2 {
    color: #1e3a8a;
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.nav-logo p {
    color: #666;
    font-size: 0.9rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #1e3a8a;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-phone {
    color: #dc2626;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
}

.cta-btn {
    background: #dc2626;
    color: white;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #b91c1c;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 200px 0 100px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e5e7eb;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e5e7eb;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #dc2626;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #b91c1c;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #1e3a8a;
}

.hero-badge {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    display: inline-block;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.service-card a {
    color: #dc2626;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-card a:hover {
    text-decoration: underline;
}

/* Services Detail Page */
.services-detail {
    padding: 80px 0;
    background: white;
}

.service-detail {
    background: #f8fafc;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    border-left: 5px solid #dc2626;
}

.service-detail h2 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.service-detail h2 i {
    color: #dc2626;
    margin-right: 0.5rem;
}

.service-detail p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.1rem;
}

.service-detail ul {
    list-style-type: none;
    padding-left: 0;
}

.service-detail li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 1.5rem;
}

.service-detail li:before {
    content: "✓";
    color: #dc2626;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background: white;
}

.about-content h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.team-member {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: border-color 0.3s;
}

.team-member:hover {
    border-color: #dc2626;
}

.team-member h3 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.service-areas ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    list-style: none;
    margin: 2rem 0;
}

.service-areas li {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    color: #1e3a8a;
}

/* Contact Page Styles */
.contact-info {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-card i {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.city {
    background: #1e3a8a;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.ask-tech {
    padding: 80px 0;
    background: #1e3a8a;
    color: white;
    text-align: center;
}

.ask-tech h2 {
    margin-bottom: 1rem;
}

.ask-tech p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #1e3a8a;
    color: white;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e3a8a;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Contact Form */
.contact-form {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-form h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.contact-form form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
}

.contact-form textarea {
    min-height: 120px;
    margin-bottom: 1rem;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    font-size: 1.1rem;
}

.form-disclaimer {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fbbf24;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services h2,
    .about h2,
    .contact-form h2 {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 160px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .services,
    .about,
    .contact-form {
        padding: 60px 0;
    }
    
    .nav-logo h2 {
        font-size: 1.4rem;
    }
    
    .nav-logo p {
        font-size: 0.8rem;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}

/* Offers Page Styles */
.offers {
    padding: 80px 0;
    background: #f8fafc;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    border-top: 5px solid #dc2626;
}

.offer-badge {
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    position: absolute;
    top: -10px;
    right: 20px;
}

.offer-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    margin-top: 1rem;
}

.offer-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.offer-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.offer-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 1.5rem;
}

.offer-card li:before {
    content: "•";
    color: #dc2626;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.teacher-contest {
    padding: 80px 0;
    background: #1e3a8a;
    color: white;
    text-align: center;
}

.teacher-contest h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.teacher-contest p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Financing Page Styles */
.financing-info {
    padding: 80px 0;
    background: white;
}

.financing-info h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.financing-info > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.financing-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: border-color 0.3s;
}

.benefit-card:hover {
    border-color: #dc2626;
}

.benefit-card i {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
}

.financing-plans {
    margin-bottom: 3rem;
}

.financing-plans h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #dc2626;
}

.plan-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.plan-card p {
    color: #666;
    margin-bottom: 1rem;
}

.plan-card ul {
    list-style: none;
    padding: 0;
}

.plan-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 1.5rem;
}

.plan-card li:before {
    content: "✓";
    color: #dc2626;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.application-process {
    margin-bottom: 3rem;
}

.application-process h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    background: #dc2626;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.step h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.step p {
    color: #666;
}

.financing-cta {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
}

.financing-cta h2 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.financing-cta p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.financing-disclaimer {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 10px;
}

/* Employment Page Styles */
.employment-info {
    padding: 80px 0;
    background: white;
}

.employment-info h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.employment-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.job-openings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.job-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #dc2626;
}

.job-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.job-card p {
    color: #666;
    margin-bottom: 1rem;
}

.job-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.job-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 1.5rem;
}

.job-card li:before {
    content: "•";
    color: #dc2626;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.benefits-section {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.benefits-section h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.benefit-item {
    background: white;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    color: #1e3a8a;
}

.employment-cta {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 3rem;
}

.employment-cta h2 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.employment-cta p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.application-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
}

.application-info h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.application-info p {
    color: #666;
    margin-bottom: 1rem;
}

.application-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.application-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 1.5rem;
}

.application-info li:before {
    content: "•";
    color: #dc2626;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Policy Page Styles */
.policy-content {
    padding: 80px 0;
    background: white;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.effective-date {
    color: #dc2626;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.policy-intro {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    background: #f8fafc;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    border-left: 5px solid #dc2626;
}

.policy-section h2 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-section h2 i {
    color: #dc2626;
    font-size: 1.5rem;
}

.policy-section p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.policy-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 2rem;
    color: #666;
    font-size: 1.1rem;
}

.policy-list li:before {
    content: "•";
    color: #dc2626;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
    font-size: 1.2rem;
}

.contact-details {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    border: 2px solid #e5e7eb;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: #dc2626;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-item span {
    color: #666;
    font-size: 1.1rem;
}

.contact-item a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    text-decoration: underline;
}

.policy-cta {
    background: #1e3a8a;
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.policy-cta h2 {
    margin-bottom: 1rem;
    color: white;
}

.policy-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #e5e7eb;
} 