* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary: #6366f1;
--secondary: #ec4899;
--accent: #8b5cf6;
--dark: #0f172a;
--gray: #64748b;
--light: #f1f5f9;
--white: #ffffff;
}

body {
font-family: 'Space Grotesk', sans-serif;
color: var(--dark);
line-height: 1.6;
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Syne', sans-serif;
font-weight: 700;
line-height: 1.2;
}

img {
max-width: 100%;
height: auto;
display: block;
}

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.container-fluid {
width: 100%;
padding: 0;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 20px;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.3s ease;
}

.privacy-popup.show {
transform: translateY(0);
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap;
}

.privacy-content h3 {
font-size: 16px;
margin-bottom: 5px;
}

.privacy-content p {
font-size: 13px;
margin: 0;
}

.privacy-buttons {
display: flex;
gap: 10px;
}

.btn-accept, .btn-learn {
padding: 8px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 13px;
font-weight: 500;
transition: all 0.3s ease;
}

.btn-accept {
background: var(--primary);
color: var(--white);
}

.btn-accept:hover {
background: #4f46e5;
}

.btn-learn {
background: transparent;
color: var(--white);
border: 1px solid var(--white);
}

.btn-learn:hover {
background: var(--white);
color: var(--dark);
}

.header {
background: var(--white);
padding: 15px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 1000;
transition: transform 0.3s ease;
}

.header-content {
display: flex;
align-items: center;
justify-content: space-between;
}

.logo a {
font-family: 'Syne', sans-serif;
font-size: 10px;
font-weight: 800;
color: var(--primary);
}

.nav {
display: flex;
gap: 30px;
}

.nav-link {
font-size: 14px;
font-weight: 500;
color: var(--dark);
position: relative;
}

.nav-link:hover, .nav-link.active {
color: var(--primary);
}

.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--primary);
transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
width: 100%;
}

.menu-toggle {
display: none;
background: none;
border: none;
font-size: 22px;
color: var(--dark);
cursor: pointer;
}

.mega-hero {
position: relative;
min-height: 90vh;
display: flex;
align-items: center;
overflow: hidden;
background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.hero-bg-shapes {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 0;
}

.shape {
position: absolute;
background: linear-gradient(135deg, var(--primary), var(--secondary));
opacity: 0.1;
border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
animation: float 20s infinite ease-in-out;
}

.shape-1 {
width: 400px;
height: 400px;
top: -100px;
left: -100px;
}

.shape-2 {
width: 300px;
height: 300px;
top: 50%;
right: -50px;
animation-delay: 5s;
}

.shape-3 {
width: 250px;
height: 250px;
bottom: -50px;
left: 30%;
animation-delay: 10s;
}

@keyframes float {
0%, 100% { transform: translate(0, 0) rotate(0deg); }
33% { transform: translate(30px, -30px) rotate(120deg); }
66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.mega-hero-grid {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
padding: 60px 0;
}

.hero-text-side {
color: var(--white);
}

.hero-badge {
display: inline-block;
background: rgba(99, 102, 241, 0.2);
border: 1px solid rgba(99, 102, 241, 0.3);
color: var(--white);
padding: 8px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 500;
margin-bottom: 20px;
}

.hero-text-side h1 {
font-size: 56px;
line-height: 1.1;
margin-bottom: 20px;
}

.gradient-text {
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-desc {
font-size: 18px;
line-height: 1.6;
color: rgba(255, 255, 255, 0.8);
margin-bottom: 30px;
}

.hero-stats {
display: flex;
gap: 40px;
margin-bottom: 35px;
flex-wrap: wrap;
}

.stat-item {
flex: 1;
min-width: 100px;
}

.stat-num {
font-size: 32px;
font-weight: 800;
color: var(--white);
line-height: 1;
margin-bottom: 5px;
}

.stat-label {
font-size: 13px;
color: rgba(255, 255, 255, 0.6);
}

.hero-cta {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.btn-mega {
display: inline-block;
padding: 16px 32px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
border-radius: 10px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
border: none;
}

.btn-mega:hover {
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.btn-mega-outline {
display: inline-block;
padding: 16px 32px;
background: transparent;
color: var(--white);
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 10px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
}

.btn-mega-outline:hover {
background: rgba(255, 255, 255, 0.1);
border-color: var(--white);
}

.hero-visual-side {
position: relative;
}

.hero-image-wrapper {
position: relative;
border-radius: 20px;
overflow: hidden;
}

.hero-image-wrapper img {
width: 100%;
height: auto;
display: block;
border-radius: 20px;
}

.floating-card {
position: absolute;
background: var(--white);
padding: 15px 20px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
display: flex;
align-items: center;
gap: 10px;
animation: floatCard 3s infinite ease-in-out;
}

.card-1 {
top: 20%;
left: -30px;
}

.card-2 {
bottom: 15%;
right: -30px;
animation-delay: 1.5s;
}

@keyframes floatCard {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}

.card-icon {
font-size: 24px;
}

.card-text {
font-size: 14px;
font-weight: 600;
color: var(--dark);
}

.trust-section {
padding: 40px 0;
background: var(--white);
border-bottom: 1px solid var(--light);
}

.trust-logos {
display: flex;
justify-content: space-around;
align-items: center;
gap: 30px;
flex-wrap: wrap;
}

.trust-item {
font-size: 13px;
color: var(--gray);
font-weight: 500;
opacity: 0.7;
}

.section-intro {
text-align: center;
max-width: 700px;
margin: 0 auto 50px;
}

.section-intro h2 {
font-size: 36px;
margin-bottom: 12px;
}

.section-intro p {
font-size: 16px;
color: var(--gray);
}

.features {
padding: 80px 0;
background: var(--light);
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.feature-card {
background: var(--white);
padding: 30px;
border-radius: 12px;
transition: all 0.3s ease;
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-number {
font-size: 48px;
font-weight: 800;
color: var(--primary);
opacity: 0.2;
line-height: 1;
margin-bottom: 15px;
}

.feature-card h3 {
font-size: 20px;
margin-bottom: 10px;
}

.feature-card p {
font-size: 14px;
color: var(--gray);
line-height: 1.6;
}

.process-section {
padding: 80px 0;
background: var(--light);
}

.process-timeline {
max-width: 800px;
margin: 0 auto;
position: relative;
}

.process-timeline::before {
content: '';
position: absolute;
left: 30px;
top: 0;
bottom: 0;
width: 2px;
background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
position: relative;
padding-left: 80px;
margin-bottom: 40px;
}

.timeline-marker {
position: absolute;
left: 0;
top: 0;
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: 700;
box-shadow: 0 5px 20px rgba(99, 102, 241, 0.3);
}

.timeline-content h3 {
font-size: 22px;
margin-bottom: 10px;
}

.timeline-content p {
font-size: 14px;
color: var(--gray);
line-height: 1.6;
}

.about {
padding: 80px 0;
}

.about-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.about-image img {
border-radius: 12px;
width: 100%;
}

.about-text h2 {
font-size: 36px;
margin-bottom: 20px;
}

.about-text p {
font-size: 15px;
color: var(--gray);
margin-bottom: 20px;
line-height: 1.7;
}

.about-highlights {
display: flex;
gap: 30px;
margin: 30px 0;
flex-wrap: wrap;
}

.highlight-item {
flex: 1;
min-width: 120px;
}

.highlight-num {
font-size: 36px;
font-weight: 800;
color: var(--primary);
line-height: 1;
margin-bottom: 5px;
}

.highlight-text {
font-size: 13px;
color: var(--gray);
}

.courses-preview {
padding: 80px 0;
background: var(--light);
}

.courses-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.course-card {
background: var(--white);
border-radius: 12px;
padding: 35px;
position: relative;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.course-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
border-color: var(--primary);
}

.course-card.featured {
border-color: var(--primary);
background: linear-gradient(135deg, rgba(99,102,241,0.05), rgba(236,72,153,0.05));
}

.course-badge {
position: absolute;
top: -12px;
right: 20px;
background: var(--primary);
color: var(--white);
padding: 5px 15px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
}

.course-level {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--primary);
font-weight: 600;
margin-bottom: 10px;
}

.course-card h3 {
font-size: 22px;
margin-bottom: 10px;
}

.course-price {
font-size: 28px;
font-weight: 700;
color: var(--primary);
margin-bottom: 10px;
}

.course-duration {
font-size: 13px;
color: var(--gray);
margin-bottom: 15px;
}

.course-card > p {
font-size: 14px;
color: var(--gray);
margin-bottom: 20px;
line-height: 1.6;
}

.course-features {
list-style: none;
margin-bottom: 25px;
}

.course-features li {
font-size: 13px;
padding: 8px 0;
border-bottom: 1px solid var(--light);
}

.showcase-section {
padding: 80px 0;
background: var(--dark);
color: var(--white);
}

.showcase-section .section-intro h2,
.showcase-section .section-intro p {
color: var(--white);
}

.showcase-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.showcase-item {
position: relative;
border-radius: 12px;
overflow: hidden;
transition: transform 0.3s ease;
}

.showcase-item:hover {
transform: translateY(-5px);
}

.showcase-item img {
width: 100%;
height: auto;
display: block;
}

.showcase-info {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
padding: 20px;
color: var(--white);
}

.showcase-info h4 {
font-size: 18px;
margin-bottom: 5px;
}

.showcase-info p {
font-size: 12px;
opacity: 0.8;
}

.testimonials {
padding: 80px 0;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.testimonial-card {
background: var(--white);
padding: 30px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-quote {
font-size: 48px;
color: var(--primary);
line-height: 1;
margin-bottom: 15px;
font-family: Georgia, serif;
}

.testimonial-card p {
font-size: 14px;
color: var(--gray);
margin-bottom: 20px;
line-height: 1.7;
}

.testimonial-author strong {
display: block;
font-size: 15px;
color: var(--dark);
margin-bottom: 3px;
}

.testimonial-author span {
font-size: 12px;
color: var(--gray);
}

.faq-section {
padding: 80px 0;
}

.faq-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.faq-item {
background: var(--light);
padding: 30px;
border-radius: 12px;
}

.faq-item h3 {
font-size: 18px;
margin-bottom: 12px;
color: var(--dark);
}

.faq-item p {
font-size: 14px;
color: var(--gray);
line-height: 1.6;
}

.final-cta {
padding: 80px 0;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
}

.final-cta-content {
display: flex;
justify-content: space-between;
align-items: center;
gap: 40px;
flex-wrap: wrap;
}

.cta-text h2 {
font-size: 36px;
margin-bottom: 10px;
}

.cta-text p {
font-size: 16px;
opacity: 0.9;
}

.cta-actions {
text-align: center;
}

.cta-note {
font-size: 13px;
margin-top: 12px;
opacity: 0.8;
}

.btn {
display: inline-block;
padding: 12px 30px;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.btn-primary {
background: var(--primary);
color: var(--white);
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(99,102,241,0.3);
}

.btn-outline {
background: transparent;
color: var(--primary);
border-color: var(--primary);
}

.btn-outline:hover {
background: var(--primary);
color: var(--white);
}

.footer {
background: var(--dark);
color: var(--white);
padding: 30px 0;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.footer-info p {
font-size: 13px;
}

.footer-links {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.footer-links a {
font-size: 12px;
color: var(--white);
}

.footer-links a:hover {
color: var(--primary);
}

.page-hero {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
padding: 60px 0;
text-align: center;
}

.page-hero h1 {
font-size: 42px;
margin-bottom: 15px;
}

.page-hero p {
font-size: 16px;
}

.courses-detailed, .career-intro, .career-paths, .career-stats, .career-support, .contact-section {
padding: 60px 0;
}

.course-detail-card {
background: var(--white);
border-radius: 12px;
padding: 40px;
margin-bottom: 30px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.course-detail-header {
display: flex;
align-items: center;
gap: 20px;
margin-bottom: 30px;
}

.course-detail-title h2 {
font-size: 28px;
margin-bottom: 5px;
}

.course-detail-price {
font-size: 24px;
font-weight: 700;
color: var(--primary);
}

.course-detail-body {
display: grid;
grid-template-columns: 1fr auto;
gap: 30px;
}

.course-detail-info h3 {
font-size: 20px;
margin: 20px 0 10px;
}

.course-detail-info p {
font-size: 14px;
color: var(--gray);
margin-bottom: 15px;
line-height: 1.7;
}

.course-detail-info ul {
list-style: none;
margin-bottom: 20px;
}

.course-detail-info ul li {
font-size: 14px;
padding: 8px 0;
padding-left: 25px;
position: relative;
}

.course-detail-info ul li::before {
content: '→';
position: absolute;
left: 0;
color: var(--primary);
font-weight: 700;
}

.career-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.career-card {
background: var(--white);
padding: 30px;
border-radius: 12px;
}

.career-card h3 {
font-size: 22px;
margin-bottom: 10px;
}

.career-card > p {
font-size: 14px;
color: var(--gray);
margin-bottom: 15px;
line-height: 1.6;
}

.career-roles {
list-style: none;
}

.career-roles li {
font-size: 13px;
padding: 6px 0;
padding-left: 20px;
position: relative;
}

.career-roles li::before {
content: '•';
position: absolute;
left: 0;
color: var(--primary);
font-weight: 700;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.stat-card {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
padding: 35px;
border-radius: 12px;
text-align: center;
}

.stat-number {
font-size: 42px;
font-weight: 800;
margin-bottom: 10px;
}

.stat-card p {
font-size: 14px;
}

.support-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.support-text h2 {
font-size: 32px;
margin-bottom: 20px;
}

.support-text p {
font-size: 15px;
color: var(--gray);
margin-bottom: 20px;
line-height: 1.7;
}

.support-image img {
border-radius: 12px;
width: 100%;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
}

.contact-intro h2 {
font-size: 32px;
margin-bottom: 15px;
}

.contact-intro p {
font-size: 15px;
color: var(--gray);
margin-bottom: 30px;
line-height: 1.7;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 25px;
}

.contact-detail-item {
display: flex;
gap: 15px;
}

.contact-text h3 {
font-size: 16px;
margin-bottom: 5px;
}

.contact-text p {
font-size: 14px;
color: var(--gray);
}

.contact-form {
background: var(--light);
padding: 35px;
border-radius: 12px;
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
font-size: 14px;
font-weight: 600;
margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid #e2e8f0;
border-radius: 8px;
font-size: 14px;
font-family: inherit;
transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

.checkbox-group {
display: flex;
align-items: flex-start;
}

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 13px;
cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
width: auto;
margin-top: 3px;
cursor: pointer;
}

.checkbox-label a {
color: var(--primary);
text-decoration: underline;
}

.map-section {
margin-top: 60px;
}

.map-container iframe {
width: 100%;
border: 0;
}

.thankyou-section, .error-section {
padding: 80px 0;
min-height: calc(100vh - 140px);
display: flex;
align-items: center;
}

.thankyou-content, .error-content {
text-align: center;
max-width: 600px;
margin: 0 auto;
}

.thankyou-content h1 {
font-size: 32px;
margin-bottom: 20px;
}

.thankyou-content p {
font-size: 15px;
color: var(--gray);
margin-bottom: 30px;
line-height: 1.7;
}

.thankyou-actions, .error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.error-number {
font-size: 120px;
font-weight: 800;
color: var(--primary);
line-height: 1;
margin-bottom: 20px;
}

.error-content h1 {
font-size: 32px;
margin-bottom: 15px;
}

.error-content p {
font-size: 15px;
color: var(--gray);
margin-bottom: 30px;
line-height: 1.7;
}

.policy-section {
padding: 60px 0;
}

.policy-content {
max-width: 900px;
margin: 0 auto;
}

.policy-content h1 {
font-size: 36px;
margin-bottom: 10px;
}

.policy-date {
font-size: 13px;
color: var(--gray);
margin-bottom: 30px;
}

.policy-content h2 {
font-size: 24px;
margin-top: 35px;
margin-bottom: 15px;
}

.policy-content h3 {
font-size: 20px;
margin-top: 25px;
margin-bottom: 12px;
}

.policy-content p {
font-size: 14px;
color: var(--gray);
margin-bottom: 15px;
line-height: 1.8;
}

.policy-content ul, .policy-content ol {
margin-bottom: 20px;
padding-left: 25px;
}

.policy-content li {
font-size: 14px;
color: var(--gray);
margin-bottom: 8px;
line-height: 1.7;
}

@media (max-width: 768px) {
.nav {
position: fixed;
top: 70px;
left: -100%;
width: 100%;
height: calc(100vh - 70px);
background: var(--white);
flex-direction: column;
padding: 30px;
gap: 20px;
transition: left 0.3s ease;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nav.active {
left: 0;
}

.menu-toggle {
display: block;
}

.mega-hero {
min-height: auto;
padding: 40px 0;
}

.mega-hero-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.hero-text-side h1 {
font-size: 36px;
}

.hero-desc {
font-size: 16px;
}

.hero-stats {
gap: 20px;
}

.stat-num {
font-size: 24px;
}

.hero-visual-side {
order: -1;
}

.floating-card {
padding: 10px 15px;
position: static;
margin: 10px 0;
display: inline-flex;
}

.trust-logos {
gap: 15px;
flex-direction: column;
align-items: center;
}

.trust-item {
font-size: 11px;
}

.section-intro h2 {
font-size: 28px;
}

.about-wrapper, .contact-wrapper, .support-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.support-wrapper .support-image {
order: -1;
}

.course-detail-body {
grid-template-columns: 1fr;
}

.privacy-content {
flex-direction: column;
align-items: flex-start;
}

.footer-content {
flex-direction: column;
text-align: center;
}

.footer-links {
justify-content: center;
}

.process-timeline::before {
left: 15px;
}

.timeline-item {
padding-left: 60px;
}

.timeline-marker {
width: 40px;
height: 40px;
font-size: 18px;
}

.about-highlights {
gap: 20px;
}

.final-cta-content {
flex-direction: column;
text-align: center;
}

.cta-text h2 {
font-size: 28px;
}

.showcase-grid {
grid-template-columns: 1fr;
}

.page-hero h1 {
font-size: 32px;
}
}

@media (max-width: 480px) {
.mega-hero {
padding: 30px 0;
}

.hero-text-side h1 {
font-size: 28px;
}

.hero-desc {
font-size: 14px;
}

.hero-stats {
flex-direction: column;
gap: 15px;
}

.btn-mega, .btn-mega-outline {
width: 100%;
text-align: center;
}

.features, .courses-preview, .testimonials, .courses-detailed, .career-intro, .career-paths, .career-stats, .career-support, .contact-section, .process-section, .showcase-section, .faq-section, .final-cta {
padding: 50px 0;
}

.about {
padding: 50px 0;
}

.section-intro h2 {
font-size: 24px;
}

.btn {
padding: 10px 20px;
font-size: 13px;
}

.course-card, .feature-card, .career-card, .faq-item {
padding: 25px;
}

.contact-form {
padding: 25px;
}

.course-detail-card {
padding: 25px;
}

.course-detail-header {
flex-direction: column;
align-items: flex-start;
}

.stat-number {
font-size: 32px;
}

.policy-content h1 {
font-size: 28px;
}

.policy-content h2 {
font-size: 20px;
}

.feature-number {
font-size: 36px;
}

.timeline-content h3 {
font-size: 18px;
}

.highlight-num {
font-size: 28px;
}

.trust-section {
padding: 30px 0;
}

.error-number {
font-size: 80px;
}
}

.course-benefits {
padding: 60px 0;
background: var(--light);
}

.course-benefits h2 {
text-align: center;
font-size: 32px;
margin-bottom: 40px;
}

.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.benefit-item {
background: var(--white);
padding: 25px;
border-radius: 12px;
text-align: center;
}

.benefit-item i {
font-size: 32px;
color: var(--primary);
margin-bottom: 15px;
display: block;
}

.benefit-item h3 {
font-size: 18px;
margin-bottom: 8px;
}

.benefit-item p {
font-size: 13px;
color: var(--gray);
}

.cta {
padding: 80px 0;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
text-align: center;
}

.cta-content h2 {
font-size: 36px;
margin-bottom: 15px;
}

.cta-content p {
font-size: 16px;
margin-bottom: 30px;
}

.btn-large {
padding: 15px 40px;
font-size: 16px;
}

.career-intro {
padding: 60px 0;
}

.career-intro-content {
max-width: 800px;
margin: 0 auto;
text-align: center;
}

.career-intro-content h2 {
font-size: 32px;
margin-bottom: 20px;
}

.career-intro-content p {
font-size: 15px;
color: var(--gray);
margin-bottom: 15px;
line-height: 1.7;
}

.career-paths {
padding: 60px 0;
background: var(--light);
}

.career-paths h2 {
text-align: center;
font-size: 32px;
margin-bottom: 40px;
}

.support-list {
list-style: none;
margin-bottom: 30px;
}

.support-list li {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 12px;
font-size: 14px;
}

.support-list i {
color: var(--primary);
font-size: 16px;
}
