

:root {
    
    --primary-coral: #FF6B6B;
    --primary-teal: #4ECDC4;
    --primary-lavender: #A78BFA;
    --primary-sage: #7FB069;
    
    --accent-amber: #F59E0B;
    --accent-rose: #FB7185;
    --accent-sky: #38BDF8;
    
    --neutral-light: #F8F9FA;
    --neutral-medium: #E9ECEF;
    --neutral-dark: #495057;
    --neutral-charcoal: #2D3748;
    
    --bg-soft-cream: #FFF8F0;
    --bg-soft-blue: #F0F9FF;
    --bg-soft-purple: #FAF5FF;
    
    
    --shadow-light: rgba(255, 255, 255, 0.7);
    --shadow-dark: rgba(0, 0, 0, 0.15);
    --neo-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
    --neo-shadow-inset: inset 6px 6px 12px var(--shadow-dark), inset -6px -6px 12px var(--shadow-light);
    --neo-shadow-small: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-charcoal);
    background: var(--neutral-light);
    overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.75rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-coral);
}

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


.main-navigation {
    background: var(--neutral-light);
    box-shadow: var(--neo-shadow-small);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo img {
    width: 40px;
    height: 40px;
}

.nav-logo span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-teal);
}

.mobile-menu-toggle {
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-coral);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background: var(--neutral-light);
    box-shadow: var(--neo-shadow);
    padding: 2rem 1rem;
    list-style: none;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    margin-bottom: 1rem;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--neutral-charcoal);
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: var(--primary-teal);
    color: white;
    box-shadow: var(--neo-shadow-small);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--neutral-medium);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}


.hero-section {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--bg-soft-cream) 0%, var(--bg-soft-blue) 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text-column {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-accent {
    color: var(--primary-coral);
}

.title-highlight {
    color: var(--primary-teal);
    display: block;
}

.hero-description {
    font-size: 1rem;
    color: var(--neutral-dark);
    margin-bottom: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--neutral-light);
    border-radius: 16px;
    box-shadow: var(--neo-shadow-small);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-coral);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--neutral-dark);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-coral);
    color: white;
    box-shadow: var(--neo-shadow-small);
}

.btn-primary:hover {
    background: var(--primary-teal);
    transform: translateY(-2px);
    box-shadow: var(--neo-shadow);
}

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

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

.hero-image-column {
    margin-bottom: 2rem;
}

.hero-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--neo-shadow);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--neutral-light);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--neo-shadow);
    text-align: center;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-lavender);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-teal);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--neutral-dark);
    margin-bottom: 0;
}


.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-lavender);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--neutral-dark);
    max-width: 800px;
    margin: 0 auto;
}


.section-university {
    background: var(--bg-soft-purple);
}

.university-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.university-card {
    background: var(--neutral-light);
    border-radius: 24px;
    box-shadow: var(--neo-shadow);
    overflow: hidden;
}

.university-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.university-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.university-content {
    padding: 2rem;
}

.university-content h3 {
    color: var(--primary-teal);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.program-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--neutral-dark);
}

.meta-item i {
    color: var(--primary-coral);
}

.program-highlights {
    background: var(--bg-soft-blue);
    padding: 1.5rem;
    border-radius: 16px;
    margin: 1.5rem 0;
}

.program-highlights h4 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.program-highlights ul {
    list-style: none;
    padding-left: 0;
}

.program-highlights li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.program-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-sage);
    font-weight: 700;
}

.program-outcomes {
    padding: 1rem;
    background: var(--neutral-medium);
    border-radius: 12px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.program-outcomes strong {
    color: var(--primary-coral);
}

.admission-info {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--neutral-light);
    border-radius: 24px;
    box-shadow: var(--neo-shadow);
}

.admission-info h3 {
    text-align: center;
    color: var(--primary-teal);
    margin-bottom: 2rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.requirement-item {
    padding: 1.5rem;
    background: var(--bg-soft-cream);
    border-radius: 16px;
    box-shadow: var(--neo-shadow-small);
}

.requirement-item i {
    font-size: 2rem;
    color: var(--primary-lavender);
    margin-bottom: 1rem;
}

.requirement-item h4 {
    color: var(--primary-teal);
    margin-bottom: 0.75rem;
}


.section-online-courses {
    background: var(--bg-soft-blue);
}

.courses-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.course-platform {
    background: var(--neutral-light);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--neo-shadow);
}

.platform-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.platform-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--neo-shadow-small);
}

.platform-icon i {
    font-size: 1.8rem;
    color: white;
}

.platform-info h3 {
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.platform-description {
    color: var(--neutral-dark);
    font-size: 0.95rem;
}

.course-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.course-item {
    padding: 1.5rem;
    background: var(--bg-soft-cream);
    border-radius: 16px;
    box-shadow: var(--neo-shadow-small);
}

.course-item h4 {
    color: var(--primary-coral);
    margin-bottom: 1rem;
}

.course-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.course-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--neutral-dark);
}

.course-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.topic-tag {
    padding: 0.4rem 0.8rem;
    background: var(--primary-lavender);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.online-learning-image {
    margin: 3rem 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--neo-shadow);
}

.learning-benefits {
    margin-top: 3rem;
}

.learning-benefits h3 {
    text-align: center;
    color: var(--primary-teal);
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.benefit-card {
    padding: 1.5rem;
    background: var(--neutral-light);
    border-radius: 16px;
    box-shadow: var(--neo-shadow-small);
    text-align: center;
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--accent-amber);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: var(--primary-teal);
    margin-bottom: 0.75rem;
}


.section-specialized {
    background: var(--bg-soft-cream);
}

.schools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.school-card {
    background: var(--neutral-light);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--neo-shadow);
}

.school-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-coral), var(--primary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--neo-shadow);
}

.school-badge i {
    font-size: 2.5rem;
    color: white;
}

.school-card h3 {
    text-align: center;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.school-tagline {
    text-align: center;
    color: var(--primary-coral);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.school-features {
    background: var(--bg-soft-blue);
    padding: 1.5rem;
    border-radius: 16px;
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    color: var(--primary-sage);
    margin-top: 0.2rem;
}

.school-curriculum {
    margin-top: 1.5rem;
}

.school-curriculum h4 {
    color: var(--primary-coral);
    margin-bottom: 1rem;
}

.school-curriculum ul {
    list-style: none;
    padding-left: 0;
}

.school-curriculum li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.school-curriculum li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: 700;
}

.comparison-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--neutral-light);
    border-radius: 24px;
    box-shadow: var(--neo-shadow);
}

.comparison-section h3 {
    text-align: center;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--neutral-medium);
}

.comparison-table th {
    background: var(--primary-teal);
    color: white;
    font-weight: 600;
}

.comparison-table tr:hover {
    background: var(--bg-soft-blue);
}


.section-resources {
    background: var(--neutral-light);
}

.resources-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.resource-category {
    background: var(--bg-soft-purple);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--neo-shadow);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-header i {
    font-size: 2.5rem;
    color: var(--primary-coral);
}

.category-header h3 {
    color: var(--primary-teal);
    margin-bottom: 0;
}

.resource-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.resource-item {
    background: var(--neutral-light);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--neo-shadow-small);
}

.resource-item h4 {
    color: var(--primary-coral);
    margin-bottom: 1rem;
}

.resource-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.resource-topics span {
    padding: 0.4rem 0.8rem;
    background: var(--primary-teal);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
}

.learning-path-guide {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--neutral-light);
    border-radius: 24px;
    box-shadow: var(--neo-shadow);
}

.learning-path-guide h3 {
    text-align: center;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.learning-stages {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stage-card {
    position: relative;
    padding: 1.5rem;
    padding-left: 4rem;
    background: var(--bg-soft-blue);
    border-radius: 16px;
    box-shadow: var(--neo-shadow-small);
}

.stage-number {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-coral);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--neo-shadow-small);
}

.stage-card h4 {
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}


.section-tools {
    background: var(--bg-soft-blue);
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.tool-category-card {
    background: var(--neutral-light);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--neo-shadow);
}

.tool-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-lavender), var(--primary-sage));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--neo-shadow);
}

.tool-icon i {
    font-size: 2.5rem;
    color: white;
}

.tool-category-card h3 {
    text-align: center;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.tool-level {
    text-align: center;
    margin-bottom: 1.5rem;
}

.level-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.25rem;
}

.level-badge.beginner {
    background: var(--primary-sage);
    color: white;
}

.level-badge.intermediate {
    background: var(--accent-amber);
    color: white;
}

.level-badge.advanced {
    background: var(--primary-coral);
    color: white;
}

.level-badge.essential,
.level-badge.industry-standard,
.level-badge.statistical,
.level-badge.visualization,
.level-badge.specialized,
.level-badge.practical {
    background: var(--primary-teal);
    color: white;
}

.tool-applications,
.tool-learning {
    margin-top: 1.5rem;
}

.tool-applications h4,
.tool-learning h4 {
    color: var(--primary-coral);
    margin-bottom: 1rem;
}

.tool-applications ul {
    list-style: none;
    padding-left: 0;
}

.tool-applications li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.tool-applications li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: 700;
}

.tools-image-section {
    margin: 3rem 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--neo-shadow);
}

.tool-integration {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--neutral-light);
    border-radius: 24px;
    box-shadow: var(--neo-shadow);
}

.tool-integration h3 {
    text-align: center;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.workflow-step {
    position: relative;
    padding: 1.5rem;
    padding-left: 4rem;
    background: var(--bg-soft-cream);
    border-radius: 16px;
    box-shadow: var(--neo-shadow-small);
}

.step-number {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-lavender);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--neo-shadow-small);
}

.workflow-arrow {
    text-align: center;
    color: var(--primary-teal);
    font-size: 1.5rem;
}

.workflow-step h4 {
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.practice-recommendations {
    margin-top: 3rem;
}

.practice-recommendations h3 {
    text-align: center;
    color: var(--primary-teal);
    margin-bottom: 2rem;
}

.practice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.practice-card {
    padding: 1.5rem;
    background: var(--neutral-light);
    border-radius: 16px;
    box-shadow: var(--neo-shadow-small);
    text-align: center;
}

.practice-card i {
    font-size: 2.5rem;
    color: var(--accent-rose);
    margin-bottom: 1rem;
}

.practice-card h4 {
    color: var(--primary-teal);
    margin-bottom: 0.75rem;
}


.section-careers {
    background: var(--bg-soft-purple);
}

.careers-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.career-path-card {
    background: var(--neutral-light);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--neo-shadow);
}

.career-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.career-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-coral), var(--accent-amber));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--neo-shadow);
}

.career-icon i {
    font-size: 2rem;
    color: white;
}

.career-title-section h3 {
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.career-subtitle {
    color: var(--neutral-dark);
    font-style: italic;
}

.career-responsibilities,
.career-skills,
.career-progression {
    margin-top: 1.5rem;
}

.career-responsibilities h4,
.career-skills h4,
.career-progression h4 {
    color: var(--primary-coral);
    margin-bottom: 1rem;
}

.career-responsibilities ul {
    list-style: none;
    padding-left: 0;
}

.career-responsibilities li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.career-responsibilities li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-sage);
    font-weight: 700;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skills-tags span {
    padding: 0.5rem 1rem;
    background: var(--primary-lavender);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.career-progression p {
    padding: 1rem;
    background: var(--bg-soft-blue);
    border-radius: 12px;
    font-weight: 500;
}

.career-image-section {
    margin: 3rem 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--neo-shadow);
}

.industry-sectors {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--neutral-light);
    border-radius: 24px;
    box-shadow: var(--neo-shadow);
}

.industry-sectors h3 {
    text-align: center;
    color: var(--primary-teal);
    margin-bottom: 2rem;
}

.sectors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.sector-card {
    padding: 1.5rem;
    background: var(--bg-soft-cream);
    border-radius: 16px;
    box-shadow: var(--neo-shadow-small);
}

.sector-card i {
    font-size: 2.5rem;
    color: var(--accent-sky);
    margin-bottom: 1rem;
}

.sector-card h4 {
    color: var(--primary-teal);
    margin-bottom: 0.75rem;
}

.career-preparation {
    margin-top: 3rem;
}

.career-preparation h3 {
    text-align: center;
    color: var(--primary-teal);
    margin-bottom: 2rem;
}

.preparation-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.prep-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--neutral-light);
    border-radius: 16px;
    box-shadow: var(--neo-shadow-small);
    flex-direction: column;
}

.prep-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--neo-shadow-small);
}

.prep-icon i {
    font-size: 1.8rem;
    color: white;
}

.prep-step h4 {
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}


.section-success {
    background: var(--bg-soft-cream);
}

.success-stories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.story-card {
    background: var(--neutral-light);
    border-radius: 24px;
    box-shadow: var(--neo-shadow);
    overflow: hidden;
}

.story-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 2rem;
}

.story-header h3 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.story-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--neutral-dark);
}

.story-meta i {
    color: var(--primary-coral);
}

blockquote {
    padding: 1.5rem;
    background: var(--bg-soft-blue);
    border-left: 4px solid var(--primary-teal);
    border-radius: 12px;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--neutral-dark);
}

.story-outcomes {
    margin-top: 1.5rem;
}

.story-outcomes h4 {
    color: var(--primary-coral);
    margin-bottom: 1rem;
}

.story-outcomes ul {
    list-style: none;
    padding-left: 0;
}

.story-outcomes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.story-outcomes li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: 700;
}

.success-insights {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--neutral-light);
    border-radius: 24px;
    box-shadow: var(--neo-shadow);
}

.success-insights h3 {
    text-align: center;
    color: var(--primary-teal);
    margin-bottom: 2rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.iti, #phone {
  width: 100%;
}

.insight-card {
    padding: 1.5rem;
    background: var(--bg-soft-purple);
    border-radius: 16px;
    box-shadow: var(--neo-shadow-small);
    text-align: center;
}

.insight-card i {
    font-size: 2.5rem;
    color: var(--accent-amber);
    margin-bottom: 1rem;
}

.insight-card h4 {
    color: var(--primary-teal);
    margin-bottom: 0.75rem;
}


.section-contact {
    background: var(--neutral-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info {
    padding: 2rem;
    background: var(--bg-soft-blue);
    border-radius: 24px;
    box-shadow: var(--neo-shadow);
}

.contact-info h3 {
    color: var(--primary-teal);
    margin-bottom: 2rem;
}

.info-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-coral);
    margin-top: 0.2rem;
}

.info-item h4 {
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--neutral-light);
    border-radius: 16px;
    box-shadow: var(--neo-shadow-small);
}

.contact-note h4 {
    color: var(--primary-coral);
    margin-bottom: 1rem;
}

.contact-form-wrapper {
    padding: 2rem;
    background: var(--neutral-light);
    border-radius: 24px;
    box-shadow: var(--neo-shadow);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--neutral-charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--neutral-medium);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--neutral-light);
    box-shadow: var(--neo-shadow-inset);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

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

.checkbox-label {
    display: flex;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: var(--primary-coral);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--neo-shadow);
}

.btn-submit:hover {
    background: var(--primary-teal);
    transform: translateY(-2px);
    box-shadow: var(--neo-shadow), 0 8px 16px rgba(0,0,0,0.1);
}


.site-footer {
    background: var(--neutral-charcoal);
    color: white;
    padding: 3rem 1rem 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-teal);
}

.footer-description {
    color: var(--neutral-medium);
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--neutral-medium);
    transition: color 0.3s ease;
}

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

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--neutral-medium);
}

.footer-contact i {
    color: var(--primary-coral);
    margin-top: 0.2rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.footer-links-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.footer-links-inline a {
    color: var(--neutral-medium);
    font-size: 0.9rem;
}

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

.cookie-settings-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-teal);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-settings-btn:hover {
    background: var(--primary-coral);
}


.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--neutral-light);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    padding: 1.5rem;
    z-index: 9999;
    transition: bottom 0.5s ease;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    color: var(--primary-teal);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-content p {
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-customize {
    background: var(--neutral-medium);
    color: var(--neutral-charcoal);
}

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

.btn-reject {
    background: transparent;
    color: var(--neutral-dark);
    border: 2px solid var(--neutral-medium);
}

.btn-reject:hover {
    border-color: var(--neutral-dark);
}


.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    overflow-y: auto;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background: var(--neutral-light);
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--neo-shadow);
}

.cookie-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--neutral-medium);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    color: var(--primary-teal);
    margin-bottom: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--neutral-dark);
    cursor: pointer;
    line-height: 1;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    padding: 1.5rem;
    background: var(--bg-soft-blue);
    border-radius: 16px;
    margin-bottom: 1rem;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-category h4 {
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.cookie-category p {
    color: var(--neutral-dark);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--neutral-medium);
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background: var(--primary-teal);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-switch input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--neutral-medium);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.btn-save:hover {
    background: var(--primary-teal);
}

.cookie-policy-link {
    text-align: center;
    color: var(--primary-teal);
    font-size: 0.9rem;
}


.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--neutral-medium);
}

.policy-header h1 {
    color: var(--primary-teal);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.policy-date {
    color: var(--neutral-dark);
    font-style: italic;
}

.policy-content {
    background: var(--neutral-light);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--neo-shadow);
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    color: var(--primary-teal);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-coral);
}

.policy-section h3 {
    color: var(--primary-coral);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

.contact-box {
    padding: 1.5rem;
    background: var(--bg-soft-blue);
    border-radius: 16px;
    margin-top: 1rem;
}

.cookie-details {
    padding: 1.5rem;
    background: var(--bg-soft-cream);
    border-radius: 16px;
    margin-top: 1rem;
}

.cookie-details h4 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--neutral-medium);
}

.cookie-table th {
    background: var(--primary-teal);
    color: white;
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background: var(--bg-soft-blue);
}

.browser-instructions {
    padding: 1.5rem;
    background: var(--bg-soft-purple);
    border-radius: 16px;
    margin-top: 1rem;
}

.browser-instructions h4 {
    color: var(--primary-coral);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.cookie-settings-btn-container {
    text-align: center;
    margin: 2rem 0;
}

.btn-cookie-settings {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-coral);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--neo-shadow);
}

.btn-cookie-settings:hover {
    background: var(--primary-teal);
    transform: translateY(-2px);
}


.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--bg-soft-cream) 0%, var(--bg-soft-blue) 100%);
}

.thanks-content {
    max-width: 800px;
    text-align: center;
    background: var(--neutral-light);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: var(--neo-shadow);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--neo-shadow);
}

.thanks-icon i {
    font-size: 3rem;
    color: white;
}

.thanks-content h1 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.thanks-message {
    color: var(--neutral-dark);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    color: var(--primary-coral);
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.step-item {
    padding: 1.5rem;
    background: var(--bg-soft-blue);
    border-radius: 16px;
    box-shadow: var(--neo-shadow-small);
}

.step-item .step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-coral);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: var(--neo-shadow-small);
}

.step-item h3 {
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.while-you-wait {
    margin: 3rem 0;
}

.while-you-wait h2 {
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

.wait-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.wait-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--neutral-medium);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.wait-link:hover {
    background: var(--primary-teal);
    color: white;
    transform: translateX(5px);
}

.wait-link i {
    font-size: 1.5rem;
    color: var(--primary-coral);
}

.wait-link:hover i {
    color: white;
}

.thanks-cta {
    margin-top: 3rem;
}


@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
    }

    .nav-menu li {
        margin-bottom: 0;
    }

    .nav-menu a {
        padding: 0.5rem 1rem;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .hero-cta {
        flex-direction: row;
    }

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

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

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

    .courses-layout {
        grid-template-columns: 1fr;
    }

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

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

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

    .resources-layout {
        grid-template-columns: 1fr;
    }

    .resource-list {
        grid-template-columns: 1fr;
    }

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

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

    .workflow-steps {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }

    .workflow-arrow {
        display: none;
    }

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

    .careers-layout {
        grid-template-columns: 1fr;
    }

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

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

    .success-stories-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-layout {
        grid-template-columns: 1fr 1.5fr;
    }

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

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-direction: row;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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


@media (min-width: 1024px) {
    body {
        font-size: 18px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .section-container {
        padding: 4rem 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-features {
        grid-template-columns: repeat(4, 1fr);
    }

    .requirements-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .learning-stages {
        grid-template-columns: repeat(5, 1fr);
    }

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

    .practice-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .preparation-steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .insights-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(4, 1fr);
    }

    .wait-links {
        grid-template-columns: repeat(4, 1fr);
    }
}


@media print {
    .main-navigation,
    .cookie-consent,
    .cookie-modal,
    .site-footer {
        display: none;
    }

    body {
        background: white;
    }

    .policy-content,
    .section-container {
        box-shadow: none;
    }
}