.section {
    padding: 20px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    /* Increased margin for better spacing */
    color: #343a40;
    position: relative;
    padding-bottom: 20px;
    /* Increased space for underline */
    font-size: 2.5rem;
    /* Slightly larger title */
    font-weight: 500;
    /* Semi-bold for emphasis */
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100px;
    /* Slightly wider underline */
    height: 4px;
    /* Thicker underline */
    background-color: #224e87;
    transform: translateX(-50%);
}

.section-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* Softer, slightly larger shadow */
    margin-bottom: 40px;
    /* Add some spacing between sections */
}

.goal-item {
    margin-bottom: 25px;
    /* Increased spacing for better readability */
    font-size: 1.1rem;
    /* Slightly larger font */
    line-height: 1.7;
    /* Improved readability */
}

.goal-item strong {
    color: #224e87;
    font-weight: 600;
    /* Stronger emphasis */
}

.why-aim-high {
    background-color: #e9ecef;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    /* Adjust spacing */
}

.approach-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    /* Adjust margin */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
}

p {
    font-size: 1.1rem;
    /* Slightly larger paragraph font */
    line-height: 1.7;
    /* Improved readability */
    margin-bottom: 1rem;
    /* Add spacing between paragraphs */
}

.milestone-item {
    margin-bottom: 30px;
    /* Increased spacing for milestones */
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #f9f9f9;
}

.milestone-item h4 {
    color: #224e87;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }

    .section-title {
        margin-bottom: 30px;
        font-size: 2rem;
        padding-bottom: 15px;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .section-content {
        padding: 30px;
    }

    p,
    .goal-item {
        font-size: 1rem;
    }

    .milestone-item h4 {
        font-size: 1.2rem;
    }
}
