/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

/* CSS Variables for Brand Colors (based on logo) */
:root {
    --primary-blue: #2B4C8C;
    --secondary-blue: #3D5AA0;
    --accent-blue: #4A90E2;
    --light-blue: #E8F2FF;
    --dark-navy: #1A2B4C;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.875rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
}

p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--gray-700);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: var(--primary-blue);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--dark-navy);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--light-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: width 0.2s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(43, 76, 140, 0.4), rgba(26, 43, 76, 0.5)), url('developer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
    max-width: 600px;
    padding-left: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light-blue);
    font-weight: 400;
}

.hero-benefits {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-benefits li {
    font-weight: 500;
    font-size: 1.125rem;
    position: relative;
    padding-left: 1.5rem;
}

.hero-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.mission-statement {
    margin-top: 3rem;
}

.mission-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.mission-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--light-blue);
    margin: 0;
}

/* Buttons */
.cta-button, .btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    text-align: center;
    line-height: 1;
}

.cta-button.primary, .btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    padding: 16px 32px;
    font-size: 1.125rem;
}

.cta-button.primary:hover, .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary, .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 14px 30px;
    font-size: 1.125rem;
}

.cta-button.secondary:hover, .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 12px 24px;
    font-size: 1rem;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.25rem;
}

/* Last Updated */
.last-updated {
    text-align: center;
    padding: 1rem 0;
    background: var(--gray-100);
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Rankings Section */
.rankings {
    background: var(--white);
}

/* Success Section */
.success-section {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
}

.success-benefits {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.success-benefits li {
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--light-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.success-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mission Section */
.mission-section {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0;
}

.mission-section .mission-statement {
    margin: 0;
}

.mission-section .mission-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-section .mission-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.mission-section .mission-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--light-blue);
    margin: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--gray-900);
}

.bootcamp-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.bootcamp-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
}

.bootcamp-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.bootcamp-card.featured {
    border: 2px solid var(--primary-blue);
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
}


.card-header {
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: start;
    border-bottom: 1px solid var(--gray-200);
}

.rank-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.rank-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
}

.rank-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bootcamp-info {
    min-width: 0;
}

.bootcamp-logo {
    margin-bottom: 0.75rem;
}

.bootcamp-logo img {
    height: 40px;
    max-width: 120px;
    object-fit: contain;
    object-position: left center;
}

/* Enhanced TrueCoders Logo Styling */
.truecoders-logo {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.truecoders-logo img {
    height: 80px;
    max-width: 240px;
    width: auto;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.truecoders-logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Enhanced EDITOR'S CHOICE badge styling */
.rating-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.editors-choice-badge {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

/* TrueCoders Clickable Card Styling */
.truecoders-clickable {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.truecoders-clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bootcamp-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.bootcamp-tagline {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.4;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
    min-width: 80px;
}

.stars {
    display: flex;
    gap: 1px;
    align-items: center;
    justify-content: center;
    order: 2;
}

.star {
    color: var(--gray-300);
    font-size: 1.25rem;
    line-height: 1;
    display: inline-block;
}

.star.filled {
    color: #fbbf24;
}

.star.half {
    background: linear-gradient(90deg, #fbbf24 50%, var(--gray-300) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    order: 1;
}

.rating-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-transform: lowercase;
    font-style: italic;
    order: 3;
}

.card-content {
    padding: 2rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

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

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.features-list li strong {
    color: var(--primary-blue);
}

.card-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.card-actions .btn-primary {
    flex: 1;
    min-width: 140px;
    padding: 12px 24px;
    background: var(--primary-blue);
    color: var(--white);
}

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

.card-actions .btn-secondary {
    flex: 1;
    min-width: 120px;
    padding: 12px 24px;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.view-more {
    text-align: center;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--gray-50);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    margin-bottom: 2rem;
    color: var(--gray-900);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.about-stats {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

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

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
    margin: 0;
}

/* Coding Relevance Section */
.coding-relevance {
    padding: 80px 0;
    background: var(--gray-50);
}

.relevance-content {
    max-width: 1000px;
    margin: 0 auto;
}

.relevance-text .lead {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.25rem;
}

.relevance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.relevance-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.relevance-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.relevance-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.relevance-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.relevance-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.key-insight {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-top: 3rem;
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.key-insight p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.key-insight p:last-child {
    margin-bottom: 0;
}

.key-insight strong {
    color: var(--primary-blue);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--gray-900);
    font-size: 1.5rem;
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--gray-50);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: left;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    margin: 0;
    color: var(--gray-600);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--white);
}

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

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 3rem;
}

.cta-content p {
    color: var(--light-blue);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .footer-logo-icon {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}


.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.legal-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        position: static;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--primary-blue);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid var(--dark-navy);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin-bottom: 1rem;
    }
    
    .nav-menu li:last-child {
        margin-bottom: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 50px 0 30px;
        min-height: 240px;
    }
    
    .hero-content {
        text-align: left;
        max-width: none;
        padding-left: 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .success-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .success-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .truecoders-logo img {
        height: 65px;
        max-width: 200px;
    }
    
    .rating-section {
        align-items: center;
        gap: 0.75rem;
    }
    
    /* TrueCoders mobile fixes */
    .truecoders-clickable .card-header {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 0.75rem;
        text-align: left;
        padding: 1.25rem;
    }
    
    .truecoders-clickable .rank-badge {
        grid-row: 1;
        grid-column: 1;
        align-self: start;
    }
    
    .truecoders-clickable .bootcamp-info {
        grid-row: 1;
        grid-column: 2;
        text-align: left;
    }
    
    .truecoders-clickable .rating-section {
        grid-row: 2;
        grid-column: 1 / -1;
        justify-self: center;
        align-items: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .truecoders-clickable .truecoders-logo img {
        height: 55px;
        max-width: 165px;
    }
    
    .truecoders-clickable .editors-choice-badge {
        order: 1;
        margin-bottom: 0.25rem;
    }
    
    .card-header {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 0.75rem;
        padding: 1.25rem;
    }
    
    .features-list {
        margin-bottom: 1.5rem;
    }
    
    .features-list li {
        padding: 0.5rem 0;
        padding-left: 1.25rem;
        font-size: 0.9rem;
    }
    
    .card-content {
        padding: 1.25rem;
    }
    
    .bootcamp-grid {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .features-list li {
        padding: 0.6rem 0;
        padding-left: 1.25rem;
        font-size: 0.9rem;
    }
    
    .rating {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .rating .stars {
        order: 2;
    }
    
    .rating .rating-score {
        order: 1;
    }
    
    .rating .rating-label {
        order: 3;
    }
    
    .card-actions {
        flex-direction: column;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 1.5rem;
        justify-content: center;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .legal-links {
        gap: 0.75rem;
        font-size: 0.8rem;
    }
    
    .legal-links a {
        padding: 0.25rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 35px 0 25px;
        min-height: 220px;
    }
    
    .hero-content {
        padding-left: 0.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mission-content {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .mission-title {
        font-size: 1.25rem;
    }
    
    .mission-text {
        font-size: 1rem;
    }
    
    .success-section {
        padding: 40px 0;
    }
    
    .success-title {
        font-size: 1.75rem;
    }
    
    .success-benefits li {
        font-size: 1rem;
    }
    
    .mission-section {
        padding: 40px 0;
    }
    
    .mission-section .mission-content {
        padding: 1.5rem;
    }
    
    .mission-section .mission-title {
        font-size: 1.5rem;
    }
    
    .nav-logo .logo-icon {
        height: 30px;
    }
    
    .truecoders-logo img {
        height: 45px;
        max-width: 140px;
    }
    
    .rating-section {
        align-items: center;
        flex-direction: column-reverse;
        gap: 0.5rem;
    }
    
    .editors-choice-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    /* TrueCoders mobile fixes for very small screens */
    .truecoders-clickable .card-header {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 0.5rem;
        padding: 1rem;
        text-align: left;
    }
    
    .truecoders-clickable .rank-badge {
        grid-row: 1;
        grid-column: 1;
        align-self: start;
    }
    
    .truecoders-clickable .bootcamp-info {
        grid-row: 1;
        grid-column: 2;
        text-align: left;
    }
    
    .truecoders-clickable .rating-section {
        grid-row: 2;
        grid-column: 1 / -1;
        justify-self: center;
        align-items: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .truecoders-clickable .truecoders-logo img {
        height: 50px;
        max-width: 150px;
    }
    
    .truecoders-clickable .editors-choice-badge {
        order: 1;
        margin-bottom: 0.25rem;
    }
    
    .card-header {
        padding: 0.75rem;
    }
    
    .card-content {
        padding: 0.75rem;
    }
    
    .features-list {
        margin-bottom: 1rem;
    }
    
    .features-list li {
        padding: 0.375rem 0;
        padding-left: 1rem;
        font-size: 0.85rem;
    }
    
    .card-actions {
        gap: 0.75rem;
    }
    
    .bootcamp-grid {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .bootcamp-card.featured::before {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.3rem 0.6rem;
        font-size: 0.6rem;
        letter-spacing: 0.03em;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .legal-links {
        gap: 0.5rem;
        line-height: 1.6;
    }
    
    .legal-links a {
        font-size: 0.75rem;
        display: inline-block;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.1);
        margin: 0.1rem;
    }
    
    .legal-links a:hover {
        background: rgba(255, 255, 255, 0.2);
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Focus Styles for Accessibility */
.nav-link:focus {
    outline: 2px solid var(--light-blue);
    outline-offset: 2px;
    border-radius: var(--radius);
}

.cta-button:focus,
.btn-primary:focus,
.btn-secondary:focus,
.btn-outline:focus,
.faq-question:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .hero,
    .cta-section,
    .footer {
        display: none;
    }
    
    .bootcamp-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
