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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.blog-post-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 60px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin: 0 auto;
}

.post-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.post-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

/* Post Content Sections */
.content-section {
    margin-bottom: 35px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
    font-family: Georgia, serif;
}

.section-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.reasons-list {
    list-style: none;
    margin-top: 15px;
}

.reasons-list li {
    padding: 10px 0;
    color: #666;
    font-size: 15px;
    position: relative;
    padding-left: 25px;
}

.reasons-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F5A623;
    font-weight: bold;
}

/* Career Opportunities Section */
.career-opportunities-section {
    margin: 60px 0;
}

.career-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.career-image-container {
    width: 100%;
    min-height: 350px;
    padding: 12px;
    border-radius: 20px;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-image {
    width: 100%;
    height: 100%;

    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: contain;
    object-position: center;
}

.career-content-container {
    padding-left: 20px;
}

.career-section-title {
    font-size: 48px;
    font-weight: bold;
    color: #000;
    margin-bottom: 50px;
    line-height: 1.2;
    font-family: Georgia, serif;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.career-card {
    background-color: #f0ede9;
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid transparent;
}

.career-icon {
    font-size: 38px;
    flex-shrink: 0;
}

.career-text {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
}

/* Instructor Section */
.instructor-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    position: relative;
}

.section-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header-content {
    flex: 1;
}

.section-header {
    font-family: 'Brush Script MT', cursive;
    font-size: 26px;
    color: #333;
    margin-bottom: 10px;
    font-weight: normal;
    font-style: italic;
}

.instructor-section-title {
    font-size: 48px;
    font-weight: bold;
    color: #000;
    font-family: Georgia, serif;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #8B1A1A;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background-color: #6B1414;
    transform: scale(1.05);
}

.swiper-button-prev-custom:active,
.swiper-button-next-custom:active {
    transform: scale(0.95);
}

/* Mobile Navigation Controls (Below Cards) */
.carousel-controls-mobile {
    display: none;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.swiper-button-prev-mobile,
.swiper-button-next-mobile {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #8B1A1A;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.swiper-button-prev-mobile:hover,
.swiper-button-next-mobile:hover {
    background-color: #6B1414;
    transform: scale(1.05);
}

.swiper-button-prev-mobile:active,
.swiper-button-next-mobile:active {
    transform: scale(0.95);
}

/* Swiper Instructor Carousel */
.instructorSwiper {
    width: 100%;
    padding: 20px 0 0 0;
}

.instructorSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.instructor-card {
    width: 100%;
    background-color: white;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.card-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    padding: 20px 20px 0 20px;
    aspect-ratio: 1 / 1;
}

.instructor-image {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 15px;
    object-fit: cover;
}

.card-content {
    padding: 30px 25px 25px 25px;
}

.instructor-name {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    font-family: Georgia, serif;
}

.instructor-title {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

.instructor-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px dashed #EBEBEB;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.stat-icon {
    font-size: 16px;
    color: #999;
}

/* Responsive Design for Career Section */
@media (max-width: 1024px) {
    .career-content-wrapper {
        gap: 50px;
    }

    .career-section-title {
        font-size: 40px;
    }

    .career-card {
        padding: 20px 25px;
    }

    .career-text {
        font-size: 16px;
    }
}

/* Instructor Responsive Design */
@media (max-width: 1024px) {
    .instructor-section {
        padding: 60px 40px;
    }

    .instructor-section-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {

    /* Hide header navigation controls on mobile */
    .carousel-controls {
        display: none;
    }

    /* Show mobile navigation controls below cards */
    .carousel-controls-mobile {
        display: flex;
    }

    .section-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .instructor-section {
        padding: 40px 20px;
    }

    .instructor-section-title {
        font-size: 32px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-post-container {
        padding: 20px;
    }

    .post-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .post-description {
        font-size: 14px;
    }

    .section-title {
        font-size: 20px;
    }

    .section-text {
        font-size: 14px;
    }

    .career-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .career-image-container {
        min-height: 280px;
        padding: 10px;
    }

    .career-content-container {
        padding-left: 0;
    }

    .career-section-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .careers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .career-card {
        padding: 20px 25px;
    }

    .career-icon {
        font-size: 34px;
    }

    .career-text {
        font-size: 16px;
    }

    .instructor-section {
        padding: 50px 30px;
    }

    .section-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-header {
        font-size: 22px;
    }

    .instructor-section-title {
        font-size: 32px;
    }

    .instructor-card {
        min-width: calc(50% - 10px);
    }

    .card-content {
        padding: 20px;
    }

    .instructor-name {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .blog-post-container {
        padding: 15px;
    }

    .post-title {
        font-size: 20px;
    }

    .section-title {
        font-size: 18px;
    }

    .career-opportunities-section {
        margin: 40px 0;
    }

    .career-section-title {
        font-size: 26px;
    }

    .career-card {
        padding: 18px 20px;
    }

    .career-icon {
        font-size: 30px;
    }

    .career-text {
        font-size: 15px;
    }

    .instructor-section {
        padding: 40px 20px;
    }

    .instructor-section-title {
        font-size: 26px;
    }

    .instructor-card {
        min-width: 100%;
    }
}

/* Instructor card link */
.instructor-card { text-decoration: none; color: inherit; }
