/* ========================================
   Study Guide Page CSS
   ======================================== */

.study-wrap {
    overflow-x: hidden;
}

/* ========================================
   Hero Section
   ======================================== */
.study-hero {
    background:
        linear-gradient(135deg, rgba(17, 94, 89, 0.88) 0%, rgba(14, 68, 65, 0.92) 100%),
        url('/images/study/hero-bg.webp') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 3rem 2rem;
    min-height: 280px;
}

.study-hero-inner {
    max-width: 1100px;
    width: 100%;
}

.study-hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.study-hero-stat {
    text-align: center;
    padding: 0.5rem 2rem;
}

.study-hero-stat .number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin-bottom: 0.3rem;
}

.study-hero-stat .label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.study-hero-content {
    text-align: center;
}

.study-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    color: white;
}

.study-hero .subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-style: italic;
}

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

.study-hero-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.study-hero-btn.primary {
    background: white;
    color: #008B8B;
}

.study-hero-btn.primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.study-hero-btn.secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.study-hero-btn.secondary:hover {
    background: white;
    color: #008B8B;
}

/* ========================================
   Content Wrapper
   ======================================== */
.study-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Section Common
   ======================================== */
.study-section {
    padding: 4rem 0;
}

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

.study-section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.study-section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* ========================================
   Study Type Cards
   ======================================== */
.study-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.study-type-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
}

.study-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.study-type-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.study-type-card-body {
    padding: 1.5rem;
}

.study-type-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.3rem;
}

.study-type-card .eng-title {
    color: #5271A8;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.study-type-card .info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.study-type-card .info-row:last-of-type {
    border-bottom: none;
}

.study-type-card .info-row span:first-child {
    color: #888;
}

.study-type-card .info-row span:last-child {
    color: #333;
    font-weight: 600;
}

.study-type-card-btn {
    display: block;
    text-align: center;
    padding: 0.8rem;
    background: #5271A8;
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.study-type-card-btn:hover {
    background: #3d5a8a;
}

/* ========================================
   Why Korea Section
   ======================================== */
.study-why-korea {
    background: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.6)),
                url('/images/study/why-korea-bg.webp') center/cover no-repeat fixed;
    padding: 5rem 0;
}

.study-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.study-why-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.study-why-card:hover {
    transform: translateY(-5px);
}

.study-why-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #5271A8, #7B93C9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.study-why-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.study-why-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* ========================================
   Timeline Section
   ======================================== */
.study-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
}

.study-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 4px;
    background: linear-gradient(90deg, #5271A8, #7B93C9, #A8B9D9);
    border-radius: 2px;
}

.study-timeline-item {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.study-timeline-item .circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5271A8, #7B93C9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(82, 113, 168, 0.4);
}

.study-timeline-item .time {
    background: #5271A8;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.study-timeline-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.3rem;
}

.study-timeline-item p {
    font-size: 0.85rem;
    color: #666;
}

/* ========================================
   University Gallery
   ======================================== */
.study-univ-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.study-univ-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.study-univ-card:hover {
    transform: scale(1.03);
}

.study-univ-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.study-univ-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.study-univ-card .rank {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #5271A8;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.study-univ-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.study-univ-card .eng-name {
    font-size: 0.8rem;
    opacity: 0.85;
}

/* ========================================
   Cost Section
   ======================================== */
.study-cost-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #eef1f7 100%);
    padding: 4rem 0;
}

.study-cost-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.study-cost-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.study-cost-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #5271A8, #7B93C9);
}

.study-cost-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.3rem;
}

.study-cost-card .eng-title {
    font-size: 0.85rem;
    color: #5271A8;
    margin-bottom: 1.5rem;
}

.study-cost-card .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5271A8;
    margin-bottom: 0.5rem;
}

.study-cost-card .amount span {
    font-size: 1rem;
    color: #888;
}

.study-cost-card .breakdown {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    text-align: left;
}

.study-cost-card .breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.study-cost-card .breakdown-item span:first-child {
    color: #666;
}

.study-cost-card .breakdown-item span:last-child {
    color: #333;
    font-weight: 600;
}

/* ========================================
   Scholarship Banner
   ======================================== */
.study-scholarship-banner {
    background: linear-gradient(135deg, #5271A8, #7B93C9);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.study-scholarship-banner .text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.study-scholarship-banner .text p {
    opacity: 0.9;
}

.study-scholarship-banner .badges {
    display: flex;
    gap: 1rem;
}

.study-scholarship-banner .badge {
    background: rgba(255,255,255,0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

/* ========================================
   Scholarship Section
   ======================================== */
.study-scholarship-section {
    background: linear-gradient(180deg, #f0f4ff 0%, #fff 100%);
    padding: 4rem 0;
}

.study-scholarship-highlight {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.study-scholarship-highlight::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.1;
}

.study-scholarship-highlight h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.study-scholarship-highlight .magic-number {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.study-scholarship-highlight p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.7;
}

.study-scholarship-category {
    max-width: 1200px;
    margin: 0 auto 2.5rem;
    padding: 0 20px;
}

.study-scholarship-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #5271A8;
}

.study-scholarship-category-header .icon {
    font-size: 2rem;
}

.study-scholarship-category-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
}

.study-scholarship-category-header .tag {
    background: #5271A8;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.study-scholarship-category-desc {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.study-scholarship-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.study-scholarship-table th {
    background: #5271A8;
    color: white;
    padding: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: left;
}

.study-scholarship-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: #444;
    vertical-align: top;
}

.study-scholarship-table tr:last-child td {
    border-bottom: none;
}

.study-scholarship-table tr:hover td {
    background: #f8f9ff;
}

.study-scholarship-table .univ-name {
    font-weight: 700;
    color: #333;
}

.study-scholarship-table .highlight-text {
    color: #e74c3c;
    font-weight: 700;
}

.study-scholarship-table .good-text {
    color: #27ae60;
    font-weight: 600;
}

/* Scholarship Tips */
.study-scholarship-tips {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.study-scholarship-tip {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #5271A8;
}

.study-scholarship-tip .tip-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.study-scholarship-tip h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.study-scholarship-tip p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.study-scholarship-tip .emphasis {
    background: linear-gradient(to right, #ffe259, #ffc961);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-weight: 600;
}

/* ========================================
   Part-time Job Section
   ======================================== */
.study-parttime-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    color: white;
}

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

.study-parttime-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.study-parttime-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.study-parttime-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.study-parttime-highlight {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.study-parttime-highlight .wage-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.study-parttime-highlight .wage-amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.study-parttime-highlight .wage-unit {
    font-size: 1.2rem;
    opacity: 0.8;
}

.study-parttime-highlight .wage-year {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.study-parttime-highlight .monthly {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.study-parttime-highlight .monthly-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.study-parttime-highlight .monthly-amount {
    font-size: 1.8rem;
    font-weight: 700;
}

.study-parttime-jobs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.study-parttime-job {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.study-parttime-job:hover {
    transform: translateX(5px);
    background: rgba(255,255,255,0.2);
}

.study-parttime-job .job-icon {
    font-size: 2rem;
}

.study-parttime-job .job-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.study-parttime-job .job-info p {
    font-size: 0.85rem;
    opacity: 0.8;
}

.study-parttime-note {
    max-width: 1200px;
    margin: 2rem auto 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.85;
    padding: 1rem 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

/* ========================================
   Testimonial Section
   ======================================== */
.study-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.study-testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    position: relative;
}

.study-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: #5271A8;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.study-testimonial-card .quote {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.study-testimonial-card .profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.study-testimonial-card .profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.study-testimonial-card .profile-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.2rem;
}

.study-testimonial-card .profile-info p {
    font-size: 0.8rem;
    color: #888;
}

/* ========================================
   FAQ Section
   ======================================== */
.study-faq {
    max-width: 800px;
    margin: 0 auto;
}

.study-faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.study-faq-question {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: background 0.3s ease;
}

.study-faq-question:hover {
    background: #f8f9fa;
}

.study-faq-question .toggle {
    font-size: 1.5rem;
    color: #5271A8;
    transition: transform 0.3s ease;
}

.study-faq-item.open .toggle {
    transform: rotate(45deg);
}

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

.study-faq-item.open .study-faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.study-faq-answer p {
    color: #666;
    line-height: 1.8;
}

/* ========================================
   CTA Section
   ======================================== */
.study-cta {
    position: relative;
    background: linear-gradient(180deg,
        rgba(20, 122, 120, 0.7) 0%,
        rgba(15, 90, 92, 0.8) 40%,
        rgba(30, 41, 59, 0.95) 100%),
        url('/images/study/cta-bg.webp') center/cover no-repeat;
    padding: 3.5rem 2rem;
    text-align: center;
    color: white;
    overflow: hidden;
}

.study-cta-inner {
    position: relative;
    z-index: 1;
}

.study-cta-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 2rem;
    backdrop-filter: blur(5px);
}

.study-cta h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 0.8rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: white;
}

.study-cta p {
    margin: 0 0 1.5rem 0;
    opacity: 0.95;
    font-size: 1rem;
    line-height: 1.6;
}

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

.study-cta-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.study-cta-btn.primary {
    background: #5271A8;
    color: white;
}

.study-cta-btn.primary:hover {
    background: #3d5a8a;
    transform: translateY(-2px);
}

.study-cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.study-cta-btn.secondary:hover {
    background: white;
    color: #333;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .study-type-grid,
    .study-why-grid,
    .study-univ-grid,
    .study-cost-grid,
    .study-testimonial-grid,
    .study-scholarship-tips {
        grid-template-columns: repeat(2, 1fr);
    }

    .study-hero-stats {
        gap: 2rem;
    }

    .study-parttime-content {
        grid-template-columns: 1fr;
    }

    .study-scholarship-table {
        font-size: 0.85rem;
    }

    .study-scholarship-table th,
    .study-scholarship-table td {
        padding: 0.8rem 0.5rem;
    }
}

@media (max-width: 768px) {
    .study-hero {
        padding: 2.5rem 1.5rem;
        min-height: 220px;
    }

    .study-hero-stats {
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .study-hero-stat {
        padding: 0.3rem 1rem;
    }

    .study-hero-stat .number {
        font-size: 1.8rem;
    }

    .study-hero-stat .label {
        font-size: 0.75rem;
    }

    .study-hero h1 {
        font-size: 1.5rem;
    }

    .study-hero .subtitle {
        font-size: 0.9rem;
    }

    .study-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .study-type-grid,
    .study-why-grid,
    .study-univ-grid,
    .study-cost-grid,
    .study-testimonial-grid,
    .study-scholarship-tips {
        grid-template-columns: 1fr;
    }

    .study-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .study-timeline::before {
        top: 0;
        bottom: 0;
        left: 30px;
        right: auto;
        width: 4px;
        height: auto;
    }

    .study-timeline-item {
        text-align: left;
        padding-left: 80px;
    }

    .study-timeline-item .circle {
        position: absolute;
        left: 0;
        margin: 0;
    }

    .study-scholarship-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .study-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .study-parttime-jobs {
        grid-template-columns: 1fr;
    }

    .study-parttime-highlight .wage-amount {
        font-size: 2.5rem;
    }

    .study-scholarship-table {
        display: block;
        overflow-x: auto;
    }

    .study-section-header h2 {
        font-size: 1.5rem;
    }
}
