/* AI Readiness Assessment Platform - Sapius Style */

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&family=League+Spartan:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #000000;
    --secondary-color: #6b7280;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;
    --light-bg: #ffffff;
    --dark-bg: #000000;
    --text-primary: #000000;
    --text-secondary: #6b7280;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --border-radius: 0px;
}

/* Global Styles */
body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'League Spartan', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    background: #000000;
    min-height: 70vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333333;
}

.bg-gradient-primary {
    background: var(--primary-color) !important;
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dimension Badges */
.dimension-badge {
    background: #1a1a1a;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 6px -1px rgba(255, 255, 255, 0.1), 0 2px 4px -1px rgba(255, 255, 255, 0.06);
    font-weight: 500;
    transition: transform 0.2s ease;
    border: 1px solid #333333;
}

.dimension-badge:hover {
    transform: translateY(-2px);
}

/* Assessment Form Styles */
.category-section {
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease;
}

.category-section:hover {
    box-shadow: var(--card-shadow);
}

.question-group {
    padding: 1rem 0;
}

.question-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.form-check {
    padding: 0.75rem 1rem;
    margin: 0.25rem 0;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.form-check:hover {
    background-color: #f9fafb;
    border-color: #e5e7eb;
}

.form-check-input:checked ~ .form-check-label {
    font-weight: 600;
    color: var(--primary-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Progress Bar */
.progress {
    background-color: #e5e7eb;
    border-radius: 10px;
}

.progress-bar {
    border-radius: 10px;
    transition: width 0.6s ease;
}

/* Results Page Styles */
.score-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 8px solid #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--card-shadow);
}

.score-value {
    text-align: center;
}

.readiness-level {
    max-width: 600px;
    margin: 0 auto;
}

.category-score-card {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-score-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
}

.recommendation-card {
    padding: 1.5rem;
    background: #fefefe;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.priority-badge .badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.action-items ul li {
    padding: 0.25rem 0;
}

/* Resources Page Styles */
.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem auto;
}

.dimension-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.dimension-item:last-child {
    border-bottom: none;
}

.dimension-list {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
}

/* Loading Spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Card Enhancements */
.card {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid #333333;
    box-shadow: 0 4px 6px -1px rgba(255, 255, 255, 0.1), 0 2px 4px -1px rgba(255, 255, 255, 0.06);
    background-color: #1a1a1a;
}

.card-header {
    border-bottom: 1px solid #333333;
    background: #1a1a1a;
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
}

.card-body {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Button Enhancements */
.btn {
    border-radius: var(--border-radius);
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

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

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

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

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        text-align: center;
    }
    
    .hero-section .col-lg-6:last-child {
        margin-top: 2rem;
    }
    
    .score-circle {
        width: 150px;
        height: 150px;
    }
    
    .display-2 {
        font-size: 2.5rem;
    }
    
    .category-score-card {
        margin-bottom: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    animation: slideInLeft 0.6s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Focus States */
.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

.btn:focus {
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

/* Accessibility Improvements */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Print Styles */
@media print {
    .navbar, .footer, .btn {
        display: none !important;
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
}
/* Missing styles for HTML templates */
.navbar {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

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

.nav-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

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

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: #1e40af;
}

.btn-secondary {
    background: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background: #4b5563;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.features {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--card-shadow);
    background: white;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.assessment-overview {
    background: var(--light-bg);
    padding: 4rem 0;
}

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

.category-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--card-shadow);
}

.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.footer {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.main-content {
    min-height: calc(100vh - 120px);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #374151;
}


/* Enhanced Assessment Form Styles */
.assessment-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.assessment-header {
    text-align: center;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
}

.assessment-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.assessment-header p {
    font-size: 1.1rem;
    color: #6b7280;
}

.assessment-form {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.form-section {
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 0;
    background: linear-gradient(90deg, #f8fafc 0%, #ffffff 100%);
}

.form-section:nth-child(even) {
    border-left-color: var(--success-color);
    background: linear-gradient(90deg, #f0fdf4 0%, #ffffff 100%);
}

.form-section:nth-child(3n) {
    border-left-color: var(--info-color);
    background: linear-gradient(90deg, #f0f9ff 0%, #ffffff 100%);
}

.form-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h2::before {
    content: "🚀";
    font-size: 1.5rem;
}

.form-section:nth-child(even) h2 {
    color: var(--success-color);
}

.form-section:nth-child(even) h2::before {
    content: "⭐";
}

.form-section:nth-child(3n) h2 {
    color: var(--info-color);
}

.form-section:nth-child(3n) h2::before {
    content: "💡";
}

.section-description {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Bigger input boxes */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

/* Sticky progress bar */
.progress-container {
    position: sticky;
    top: 0;
    z-index: 100;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
}

.progress-bar-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #34d399);
    transition: width 0.3s ease;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.progress-text {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    min-width: 120px;
    text-align: right;
}

/* Enhanced question styling */
.question-group {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.question-group:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.question-title {
    color: #1f2937;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: #f9fafb;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-option:hover {
    background: #f3f4f6;
    transform: translateX(4px);
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--success-color);
    background: var(--success-color);
}

.radio-option input[type="radio"]:checked {
    background: var(--success-color);
}

.radio-option:has(input:checked) {
    background: linear-gradient(90deg, #ecfdf5, #f0fdf4);
    border-color: var(--success-color);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.radio-custom {
    width: 24px;
    height: 24px;
    border: 3px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
}

.radio-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #374151;
}

/* Enhanced form actions */
.form-actions {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    text-align: center;
    border-top: 3px solid var(--primary-color);
}

.form-actions .btn-large {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: white;
    padding: 1.25rem 3rem;
    font-size: 1.3rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.form-actions .btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.loading-message {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    margin-top: 2rem;
}

.loading-message i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-right: 1rem;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .assessment-header h1 {
        font-size: 2rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    .progress-container {
        padding: 1rem;
    }
    
    .radio-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}


/* Force sticky progress bar */
.progress-container {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}


/* Fixed header approach for progress bar */
.progress-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    width: 100% !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

/* Add top padding to assessment form to account for fixed progress bar */
.assessment-form {
    margin-top: 100px !important;
}

.assessment-container {
    padding-top: 0 !important;
}


/* Results page styling */
.results-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.results-header {
    text-align: center;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
}

.score-overview {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 3rem;
    text-align: center;
}

.overall-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

/* Smaller score circle */
.score-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.score-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.score-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.score-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.score-description {
    max-width: 500px;
}

.score-description h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.score-description p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Category scores styling */
.category-scores {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 3rem;
}

.category-scores h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.category-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-2px);
}

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

.category-header h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
}

.category-score {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--success-color);
}

.progress-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success-color), #34d399);
    transition: width 0.5s ease;
    border-radius: 4px;
}

.category-description {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .score-circle {
        width: 150px;
        height: 150px;
    }
    
    .score-number {
        font-size: 2.5rem;
    }
    
    .overall-score {
        gap: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
}


/* Results page bottom actions styling */
.actions {
    margin-top: 4rem;
    padding: 3rem 0;
    text-align: center;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.actions .btn {
    margin: 0.5rem;
    min-width: 180px;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Add extra space before the actions */
.next-steps + .actions {
    margin-top: 5rem;
}


/* Resources page styling */
.resources-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.resources-header {
    text-align: center;
    margin-bottom: 3rem;
    background: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
}

.resources-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.resources-header p {
    font-size: 1.1rem;
    color: #6b7280;
}

/* Separate containers for each section */
.resource-section {
    background: white;
    margin-bottom: 3rem;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    border-left: 4px solid var(--primary-color);
}

.resource-section:nth-child(even) {
    border-left-color: var(--success-color);
}

.resource-section:nth-child(3n) {
    border-left-color: var(--info-color);
}

.resource-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.resource-section:nth-child(even) h2 {
    color: var(--success-color);
}

.resource-section:nth-child(3n) h2 {
    color: var(--info-color);
}

.resource-section h2::before {
    content: "🚀";
    font-size: 1.5rem;
}

.resource-section:nth-child(even) h2::before {
    content: "⚙️";
}

.resource-section:nth-child(3n) h2::before {
    content: "🏢";
}

.resource-section:last-of-type h2::before {
    content: "🎓";
}

/* Resource grid styling */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.resource-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.resource-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.resource-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-card ul {
    list-style: none;
    padding: 0;
}

.resource-card li {
    color: #374151;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.resource-card li::before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Additional resources section */
.additional-resources {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 3rem;
    border-left: 4px solid var(--warning-color);
}

.additional-resources h2 {
    color: var(--warning-color);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.links-column {
    background: linear-gradient(135deg, #fefce8 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #fbbf24;
}

.links-column h3 {
    color: var(--warning-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.links-column ul {
    list-style: none;
    padding: 0;
}

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

.links-column a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.links-column a:hover {
    color: var(--warning-color);
    text-decoration: underline;
}

/* CTA section at bottom */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: white;
    padding: 4rem 3rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .resource-section {
        padding: 2rem 1.5rem;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
    }
    
    .links-section {
        grid-template-columns: 1fr;
    }
    
    .resources-header h1 {
        font-size: 2rem;
    }
    
    .resource-section h2 {
        font-size: 1.5rem;
    }
}

