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

:root {
--primary: #6366f1;
--primary-dark: #4f46e5;
--secondary: #ec4899;
--dark: #0f172a;
--dark-light: #1e293b;
--gray: #64748b;
--light: #f1f5f9;
--white: #ffffff;
--success: #10b981;
}

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

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

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.4rem; }

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

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

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

.btn-primary, .btn-secondary, .btn-outline, .btn-white {
display: inline-block;
padding: 14px 32px;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
border: none;
cursor: pointer;
text-align: center;
}

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

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

.btn-secondary {
background: transparent;
color: var(--primary);
border: 2px solid var(--primary);
}

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

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

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

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

.btn-white:hover {
background: var(--light);
}

.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.4s ease;
box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

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

.privacy-content p {
margin: 0;
flex: 1;
min-width: 250px;
font-size: 14px;
}

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

.btn-accept, .btn-learn {
padding: 10px 24px;
border-radius: 6px;
font-weight: 600;
font-size: 13px;
border: none;
cursor: pointer;
transition: all 0.3s ease;
}

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

.btn-accept:hover {
background: var(--primary-dark);
}

.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;
position: relative;
z-index: 100;
border-bottom: 1px solid var(--light);
}

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

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

.nav {
display: flex;
gap: 30px;
align-items: center;
}

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

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

.nav-link.active::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
right: 0;
height: 2px;
background: var(--primary);
}

.menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: transparent;
border: none;
cursor: pointer;
padding: 5px;
}

.menu-toggle span {
width: 25px;
height: 2px;
background: var(--dark);
transition: all 0.3s ease;
}

.hero-mega {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
padding: 100px 0 80px;
position: relative;
overflow: hidden;
}

.hero-bg-shapes {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
}

.shape {
position: absolute;
border-radius: 50%;
opacity: 0.1;
}

.shape-1 {
width: 400px;
height: 400px;
background: var(--white);
top: -100px;
right: -100px;
}

.shape-2 {
width: 300px;
height: 300px;
background: var(--white);
bottom: -50px;
left: -50px;
}

.shape-3 {
width: 200px;
height: 200px;
background: var(--white);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

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

.hero-mega-content {
color: var(--white);
}

.hero-badge {
display: inline-block;
background: rgba(255,255,255,0.2);
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 25px;
backdrop-filter: blur(10px);
}

.hero-mega-content h1 {
font-size: 3.5rem;
margin-bottom: 20px;
line-height: 1.1;
}

.hero-mega-content > p {
font-size: 1.1rem;
margin-bottom: 35px;
opacity: 0.95;
line-height: 1.7;
}

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

.stat-item {
display: flex;
flex-direction: column;
}

.stat-item strong {
font-size: 2rem;
font-weight: 700;
margin-bottom: 5px;
}

.stat-item span {
font-size: 13px;
opacity: 0.9;
}

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

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

.visual-card {
border-radius: 16px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
transform: perspective(1000px) rotateY(-5deg);
transition: transform 0.3s ease;
}

.visual-card:hover {
transform: perspective(1000px) rotateY(0deg);
}

.visual-card img {
width: 100%;
height: auto;
display: block;
}

.trust-bar {
background: var(--dark);
padding: 25px 0;
color: var(--white);
text-align: center;
}

.trust-bar p {
font-size: 13px;
opacity: 0.7;
margin-bottom: 15px;
}

.company-list {
display: flex;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
}

.company-list span {
font-size: 14px;
font-weight: 600;
opacity: 0.8;
}

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

.section-header.centered {
text-align: center;
}

.section-header h2 {
margin-bottom: 15px;
}

.section-header p {
color: var(--gray);
font-size: 1.05rem;
}

.section-label {
display: inline-block;
background: var(--light);
color: var(--primary);
padding: 6px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 15px;
}

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

.features-modern-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}

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

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

.feature-icon-wrap {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.feature-icon-wrap i {
font-size: 1.6rem;
color: var(--white);
}

.feature-modern h3 {
margin-bottom: 12px;
}

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

.programs-preview {
padding: 80px 0;
}

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

.programs-content h2 {
margin-bottom: 20px;
}

.programs-content > p {
color: var(--gray);
margin-bottom: 30px;
line-height: 1.7;
}

.program-highlights {
display: flex;
flex-direction: column;
gap: 20px;
margin-bottom: 30px;
}

.highlight-item {
display: flex;
gap: 15px;
align-items: flex-start;
}

.highlight-item i {
color: var(--success);
font-size: 1.3rem;
margin-top: 3px;
}

.highlight-item strong {
display: block;
margin-bottom: 3px;
color: var(--dark);
}

.highlight-item span {
font-size: 14px;
color: var(--gray);
}

.programs-visual img {
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

.methodology-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}

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

.step-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary);
opacity: 0.2;
margin-bottom: 15px;
}

.method-step h3 {
margin-bottom: 12px;
}

.method-step p {
color: var(--gray);
font-size: 14px;
line-height: 1.7;
}

.student-work {
padding: 80px 0;
}

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

.work-visual img {
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.work-testimonials {
display: flex;
flex-direction: column;
gap: 25px;
}

.testimonial-modern {
background: var(--light);
padding: 25px;
border-radius: 12px;
border-left: 4px solid var(--primary);
}

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

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

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

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

.outcomes-content h2 {
margin-bottom: 20px;
}

.outcomes-content > p {
font-size: 1.05rem;
margin-bottom: 40px;
opacity: 0.9;
line-height: 1.7;
max-width: 800px;
}

.outcomes-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-bottom: 40px;
}

.outcome-card {
background: var(--dark-light);
padding: 30px;
border-radius: 12px;
}

.outcome-card h4 {
margin-bottom: 12px;
font-size: 1.2rem;
}

.outcome-card p {
font-size: 14px;
opacity: 0.8;
line-height: 1.7;
}

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

.cta-card {
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 16px;
padding: 60px;
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 50px;
align-items: center;
color: var(--white);
}

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

.cta-content p {
margin-bottom: 30px;
opacity: 0.95;
line-height: 1.7;
}

.cta-info {
display: flex;
flex-direction: column;
gap: 25px;
}

.info-item {
display: flex;
gap: 15px;
align-items: flex-start;
}

.info-item i {
font-size: 1.5rem;
margin-top: 3px;
}

.info-item strong {
display: block;
margin-bottom: 3px;
}

.info-item span {
font-size: 14px;
opacity: 0.9;
}

.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;
opacity: 0.8;
}

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

.footer-links a {
font-size: 13px;
opacity: 0.8;
transition: opacity 0.3s ease;
}

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

.page-hero {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
padding: 70px 0;
text-align: center;
color: var(--white);
position: relative;
overflow: hidden;
}

.page-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.page-hero h1 {
font-size: 2.8rem;
margin-bottom: 15px;
position: relative;
z-index: 1;
}

.page-hero p {
font-size: 1.1rem;
opacity: 0.95;
position: relative;
z-index: 1;
}

.products {
padding: 80px 0;
}

.products h2 {
text-align: center;
margin-bottom: 50px;
}

.products-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.product-card {
background: var(--white);
border: 2px solid var(--light);
border-radius: 12px;
overflow: hidden;
transition: all 0.3s ease;
display: flex;
flex-direction: column;
position: relative;
}

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

.product-card.featured {
border-color: var(--primary);
box-shadow: 0 10px 30px rgba(99,102,241,0.2);
}

.product-badge {
position: absolute;
top: 15px;
right: 15px;
background: var(--secondary);
color: var(--white);
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
z-index: 1;
}

.product-header {
padding: 35px 30px 20px;
text-align: center;
}

.product-header i {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 15px;
}

.product-header h3 {
font-size: 1.5rem;
margin-bottom: 0;
}

.product-body {
padding: 0 30px 20px;
flex: 1;
}

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

.product-features {
list-style: none;
}

.product-features li {
padding: 10px 0;
font-size: 14px;
color: var(--gray);
display: flex;
align-items: center;
gap: 12px;
}

.product-features i {
color: var(--success);
font-size: 14px;
}

.product-footer {
padding: 25px 30px 35px;
border-top: 1px solid var(--light);
text-align: center;
}

.product-price {
font-size: 2.2rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 20px;
}

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

.curriculum h2 {
text-align: center;
margin-bottom: 50px;
}

.curriculum-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}

.curriculum-item {
background: var(--white);
padding: 35px;
border-radius: 12px;
}

.curriculum-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary);
opacity: 0.2;
margin-bottom: 12px;
}

.curriculum-item h3 {
margin-bottom: 12px;
}

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

.learning-path {
padding: 80px 0;
}

.learning-path h2 {
text-align: center;
margin-bottom: 60px;
}

.path-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
max-width: 1000px;
margin: 0 auto;
}

.path-step {
flex: 1;
text-align: center;
padding: 35px;
background: var(--light);
border-radius: 12px;
}

.step-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}

.step-icon i {
font-size: 2rem;
color: var(--white);
}

.path-step h3 {
margin-bottom: 12px;
}

.path-step p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
}

.path-arrow {
font-size: 1.5rem;
color: var(--primary);
}

.career-paths {
padding: 80px 0;
}

.career-paths h2 {
text-align: center;
margin-bottom: 50px;
}

.careers-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

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

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

.career-icon {
width: 60px;
height: 60px;
background: var(--light);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.career-icon i {
font-size: 1.8rem;
color: var(--primary);
}

.career-card h3 {
margin-bottom: 12px;
}

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

.career-stats {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.career-stats span {
font-size: 12px;
color: var(--gray);
display: flex;
align-items: center;
gap: 6px;
}

.career-stats i {
color: var(--primary);
font-size: 12px;
}

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

.success-metrics h2 {
text-align: center;
margin-bottom: 50px;
}

.metrics-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}

.metric-card {
background: var(--white);
padding: 40px 30px;
border-radius: 12px;
text-align: center;
}

.metric-number {
font-size: 2.8rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 10px;
}

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

.skills-demand {
padding: 80px 0;
}

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

.skills-text h2 {
margin-bottom: 20px;
}

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

.skills-list {
display: flex;
flex-direction: column;
gap: 15px;
}

.skill-item {
display: flex;
align-items: center;
gap: 15px;
padding: 18px;
background: var(--light);
border-radius: 8px;
}

.skill-item i {
color: var(--success);
font-size: 1.2rem;
}

.skill-item span {
font-weight: 500;
}

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

.contact-hero h1 {
font-size: 2.8rem;
margin-bottom: 15px;
}

.contact-hero p {
font-size: 1.1rem;
opacity: 0.95;
}

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

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

.contact-info h2 {
margin-bottom: 20px;
}

.contact-info > p {
color: var(--gray);
margin-bottom: 35px;
line-height: 1.7;
}

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

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

.contact-item i {
font-size: 1.5rem;
color: var(--primary);
margin-top: 5px;
}

.contact-item strong {
display: block;
margin-bottom: 5px;
}

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

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

.contact-form h3 {
margin-bottom: 30px;
}

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

.form-group input,
.form-group textarea {
width: 100%;
padding: 14px 18px;
border: 2px solid var(--light);
border-radius: 8px;
font-family: 'Space Grotesk', sans-serif;
font-size: 14px;
transition: border-color 0.3s ease;
background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary);
}

.form-group textarea {
resize: vertical;
min-height: 130px;
}

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

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 13px;
color: var(--gray);
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 {
padding: 80px 0;
background: var(--light);
}

.map-section h2 {
text-align: center;
margin-bottom: 40px;
}

.map-wrapper {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thankyou-section, .error-section {
padding: 100px 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-icon {
width: 100px;
height: 100px;
background: var(--success);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 30px;
}

.thankyou-icon i {
font-size: 3rem;
color: var(--white);
}

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

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

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

.error-code {
font-size: 6rem;
font-weight: 700;
color: var(--primary);
opacity: 0.3;
margin-bottom: 20px;
}

.error-content h1 {
margin-bottom: 20px;
}

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

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

.policy-hero {
background: var(--dark);
padding: 60px 0;
text-align: center;
color: var(--white);
}

.policy-hero h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}

.policy-hero p {
font-size: 14px;
opacity: 0.7;
}

.policy-content {
padding: 70px 0;
}

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

.policy-text h2 {
margin-top: 45px;
margin-bottom: 20px;
color: var(--dark);
}

.policy-text h3 {
margin-top: 35px;
margin-bottom: 15px;
color: var(--dark-light);
font-size: 1.2rem;
}

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

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

.policy-text li {
margin-bottom: 10px;
color: var(--gray);
line-height: 1.7;
}

@media (max-width: 1024px) {
.hero-mega-grid,
.programs-split,
.work-showcase,
.skills-wrapper,
.contact-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.cta-card {
grid-template-columns: 1fr;
padding: 45px;
}

.methodology-grid {
grid-template-columns: repeat(2, 1fr);
}

.outcomes-grid,
.careers-grid {
grid-template-columns: repeat(2, 1fr);
}

.products-grid {
grid-template-columns: repeat(2, 1fr);
}

.metrics-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
h1 { font-size: 2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.2rem; }

.container {
padding: 0 15px;
}

.nav {
position: fixed;
top: 60px;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
transform: translateX(-100%);
transition: transform 0.3s ease;
}

.nav.active {
transform: translateX(0);
}

.menu-toggle {
display: flex;
}

.hero-mega {
padding: 60px 0 50px;
}

.hero-mega-content h1 {
font-size: 2.2rem;
}

.hero-stats {
gap: 25px;
}

.stat-item strong {
font-size: 1.6rem;
}

.features-modern-grid,
.methodology-grid,
.outcomes-grid,
.careers-grid,
.products-grid,
.curriculum-grid,
.metrics-grid {
grid-template-columns: 1fr;
}

.path-wrapper {
flex-direction: column;
}

.path-arrow {
transform: rotate(90deg);
}

.company-list {
gap: 25px;
}

.features-modern,
.programs-preview,
.methodology,
.student-work,
.career-outcomes,
.enrollment-cta,
.products,
.curriculum,
.learning-path,
.career-paths,
.success-metrics,
.skills-demand,
.contact-section,
.map-section,
.policy-content {
padding: 60px 0;
}

.cta-card {
padding: 35px;
}

.contact-form-wrapper {
padding: 30px;
}

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

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

.thankyou-section, .error-section {
padding: 60px 0;
min-height: calc(100vh - 150px);
}

.error-code {
font-size: 4rem;
}
}

@media (max-width: 480px) {
h1 { font-size: 1.7rem; }
h2 { font-size: 1.5rem; }

.btn-primary, .btn-secondary, .btn-outline, .btn-white {
padding: 12px 24px;
font-size: 13px;
}

.hero-mega {
padding: 50px 0 40px;
}

.hero-mega-content h1 {
font-size: 1.9rem;
}

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

.features-modern,
.programs-preview,
.methodology,
.student-work,
.career-outcomes,
.enrollment-cta,
.products,
.curriculum,
.learning-path,
.career-paths,
.success-metrics,
.skills-demand,
.contact-section,
.map-section,
.policy-content {
padding: 50px 0;
}

.feature-modern,
.method-step,
.career-card,
.product-card {
padding: 25px;
}

.cta-card {
padding: 30px;
}

.contact-form-wrapper {
padding: 25px;
}

.thankyou-icon {
width: 80px;
height: 80px;
}

.thankyou-icon i {
font-size: 2.5rem;
}
}

@media (max-width: 320px) {
body {
font-size: 14px;
}

h1 { font-size: 1.5rem; }
h2 { font-size: 1.3rem; }
h3 { font-size: 1rem; }

.container {
padding: 0 12px;
}

.btn-primary, .btn-secondary, .btn-outline, .btn-white {
padding: 10px 20px;
font-size: 12px;
}

.hero-mega-content h1 {
font-size: 1.6rem;
}

.stat-item strong {
font-size: 1.4rem;
}
}
