/* ===================================================
   3-IN-1 DATA MASTERY COURSE PAGE STYLES
   ================================================== */

/* Hero Section */
.sql-python-bi-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sql-python-bi-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(238, 90, 111, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.sql-python-bi-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-highlight {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 600px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-highlight h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.hero-highlight p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Course Stats Grid */
.course-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 3rem auto;
    max-width: 900px;
}

.stat-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    display: block;
}

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

.primary-cta {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(238, 90, 111, 0.4);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(238, 90, 111, 0.5);
}

.secondary-cta {
    background: transparent;
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    background: white;
    color: #667eea;
}

/* Course Difference Section */
.course-difference {
    padding: 80px 0;
    background: #f8f9fa;
}

.course-difference h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

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

.difference-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.difference-card:nth-child(1) {
    border-top-color: #667eea;
}

.difference-card:nth-child(2) {
    border-top-color: #764ba2;
}

.difference-card:nth-child(3) {
    border-top-color: #f093fb;
}

.difference-card:nth-child(4) {
    border-top-color: #ff6b6b;
}

.difference-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.difference-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.difference-card p {
    color: #666;
    line-height: 1.6;
}

/* Project Curriculum Section */
.project-curriculum {
    padding: 80px 0;
    background: white;
}

.project-curriculum h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.curriculum-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.curriculum-block {
    margin-bottom: 4rem;
}

.week-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    color: white;
    margin-bottom: 2rem;
}

.week-header h3 {
    font-size: 1.8rem;
    margin: 0;
}

.week-tag {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Project Cards */
.project-card {
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: #667eea;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card.featured {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border: 3px solid #667eea;
}

.project-card.capstone {
    background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
    border: 3px solid #ff6b6b;
}

.project-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-card.capstone .project-number {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.project-card h4 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.project-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Skills Learned */
.skills-learned {
    margin: 2rem 0;
}

.skills-learned h5 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill {
    background: linear-gradient(135deg, #e8edff, #f0f3ff);
    color: #667eea;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #d0d8ff;
    transition: all 0.3s ease;
}

.skill:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
}

/* Project Deliverables */
.project-deliverables {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.project-deliverables h5 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.project-deliverables ul {
    list-style: none;
    padding: 0;
}

.project-deliverables li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.project-deliverables li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Tools Used Badges */
.tools-used {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.tool-badge {
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tool-badge.sql {
    background: linear-gradient(135deg, #00758f, #005662);
    color: white;
}

.tool-badge.python {
    background: linear-gradient(135deg, #306998, #FFD43B);
    color: white;
}

.tool-badge.bi {
    background: linear-gradient(135deg, #f7b32b, #fcb131);
    color: white;
}

/* Learning Outcomes Section */
.learning-outcomes {
    padding: 80px 0;
    background: #f8f9fa;
}

.learning-outcomes h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

.outcome-category {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.outcome-category h3 {
    font-size: 1.6rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.outcome-list {
    list-style: none;
    padding: 0;
}

.outcome-list li {
    padding: 0.8rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

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

.outcome-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Tools Mastery Section */
.tools-mastery {
    padding: 80px 0;
    background: white;
}

.tools-mastery h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.tech-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.tech-category {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
}

.tech-category h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

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

.tech-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tech-item h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.tech-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Career Impact Section */
.career-impact {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.career-impact h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

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

.market-stat {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.market-stat h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.market-stat p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.career-paths h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

.path-card {
    background: rgba(255,255,255,0.95);
    color: #2c3e50;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.path-card h4 {
    font-size: 1.4rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.salary {
    font-size: 1.3rem;
    font-weight: bold;
    color: #4caf50;
    margin-bottom: 1rem;
    display: block;
}

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

.path-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.path-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background: #f8f9fa;
}

.success-stories h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

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

.student-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.student-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.student-info h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.2rem;
}

.student-role {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-text {
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-achievement {
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    color: #155724;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

/* Course Investment Section */
.course-investment {
    padding: 80px 0;
    background: white;
}

.course-investment h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.pricing-card.featured {
    background: white;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 3px solid #667eea;
}

.pricing-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.price-display {
    text-align: center;
    margin: 2rem 0;
}

.price-display .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
}

.price-display .amount {
    font-size: 4rem;
    font-weight: 800;
    color: #667eea;
    display: block;
    line-height: 1;
}

.price-display .period {
    font-size: 1.1rem;
    color: #666;
}

.payment-options {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.payment-options h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.payment-option {
    padding: 0.8rem 0;
    color: #555;
    font-size: 1.05rem;
}

.whats-included {
    margin: 2rem 0;
}

.whats-included h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.whats-included ul {
    list-style: none;
    padding: 0;
}

.whats-included li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.whats-included li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.2rem;
}

.guarantee-badge {
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
    border: 2px solid #4caf50;
}

.guarantee-badge h4 {
    color: #155724;
    margin-bottom: 0.5rem;
}

.guarantee-badge p {
    color: #155724;
    margin: 0;
}

.enroll-cta {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.enroll-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.comparison-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff8e1;
    border-radius: 10px;
    color: #666;
    font-style: italic;
}

/* FAQ Section */
.course-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.course-faq h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-item h4 {
    color: #667eea;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #3c4f65 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-message {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

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

.primary-cta-large {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(238, 90, 111, 0.4);
}

.primary-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(238, 90, 111, 0.5);
}

.secondary-cta-large {
    background: transparent;
    color: white;
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    font-weight: bold;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.secondary-cta-large:hover {
    background: white;
    color: #2c3e50;
}

.contact-final {
    margin-top: 3rem;
    font-size: 1.1rem;
}

.contact-final p {
    margin: 0.5rem 0;
}

/* Featured Course Card on Homepage */
.resource-card.featured-course {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border: 3px solid #667eea;
    position: relative;
    overflow: visible;
}

.course-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(238, 90, 111, 0.4);
}

.course-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.course-highlights li {
    padding: 0.5rem 0;
    color: #555;
}

.resource-button.featured {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.resource-button.featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .sql-python-bi-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .course-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .difference-grid {
        grid-template-columns: 1fr;
    }
    
    .week-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .project-card {
        padding: 1.5rem;
    }
    
    .project-card h4 {
        font-size: 1.5rem;
    }
    
    .skill-tags {
        justify-content: center;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .paths-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons,
    .cta-buttons-final {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-cta,
    .secondary-cta,
    .primary-cta-large,
    .secondary-cta-large {
        width: 100%;
        max-width: 400px;
    }
    
    .job-market-stats {
        grid-template-columns: 1fr;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .cta-message {
        font-size: 1.1rem;
    }
}
