/* General Page Styling */
body {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

/* Title Box */
.all-title-box.posh{
    background: url('./images/desire1.jpg') !important;
    background-size: cover !important;
    background-position: center center!important;
    min-height: 300px !important;
    padding: 60px 0;
    color: white;
    text-align: center;
}

.all-title-box h1 {
    font-size: 50px !important;
    font-weight: bold;
    margin-bottom: 10px;
}

.all-title-box .m_1 {
    font-size: 16px;
    opacity: 0.9;
}

/* Section Title */
.section-title h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.section-title .lead {
    font-size: 18px;
    color: #555;
}

/* Content Section */
.section-wrapper {
    padding: 40px 20px;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.posh h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.posh ul {
    list-style: none;
    padding-left: 0;
}

.posh ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 25px;
    color: #444;
}

.posh ul li::before {
    content: "✔";
    color: #007BFF;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Who Should Attend Section */
.course-target {
    padding: 40px 30px;
    background-color: #f7faff;
    border-left: 5px solid #007BFF;
    border-radius: 8px;
    margin-top: 40px;
}

.course-target h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.target-list {
    list-style: none;
    padding-left: 0;
}

.target-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 25px;
    color: #333;
}

.target-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: #007BFF;
    font-size: 18px;
    top: 1px;
}

/* Responsive Image */
.img-fluid {
    border-radius: 8px;
    object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .all-title-box h1 {
        font-size: 28px;
    }

    .posh h1,
    .course-target h2 {
        font-size: 20px;
    }

    .img-fluid {
        height: auto;
    }

    .section-wrapper {
        padding: 20px 15px;
    }
}
