     .content-wrapper {
            position: relative;
            z-index: 1;
            padding-bottom: 40px;
        }

        /* Mission Section */
        .mission-section {
            background: rgba(255, 255, 255, 0.95);
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: #2c3e50;
            position: relative;
            display: inline-block;
            text-align: center;
            width: 100%;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: #e63946;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Mission and Vision Containers */
        .mission-container, .vision-container {
            margin-bottom: 50px;
        }

        .container-title {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e63946;
            display: flex;
            align-items: center;
        }

        .container-title i {
            margin-right: 15px;
            color: #e63946;
        }

        /* Points List */
        .points-list {
            list-style-type: none;
            padding-left: 20px;
        }

        .points-list li {
            margin-bottom: 15px;
            font-size: 1.1rem;
            line-height: 1.6;
            position: relative;
            padding-left: 40px;
            display: flex;
            align-items: flex-start;
        }

        .points-list li:before {
            content: "·";
            font-size: 2.5rem;
            position: absolute;
            left: 0;
            top: -15px;
            color: #e63946;
            font-weight: bold;
        }

        .vision-point {
            margin-bottom: 20px;
            padding-left: 40px;
            position: relative;
        }

        .vision-point:before {
            content: "•";
            font-size: 1.8rem;
            position: absolute;
            left: 0;
            top: -5px;
            color: #2c3e50;
        }

        .vision-belief {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            border-left: 4px solid #e63946;
        }

        .vision-belief p {
            margin: 0;
            font-style: italic;
            color: #2c3e50;
        }

        /* In this objective section */
        .objective-section {
            background: rgba(248, 249, 250, 0.9);
            padding: 30px;
            border-radius: 8px;
            margin-top: 30px;
            border-left: 4px solid #2c3e50;
        }

        .objective-section .points-list li:before {
            color: #2c3e50;
        }

        /* Highlight Box */
        .highlight-box {
            background: #f8f9fa;
            border-left: 4px solid #e63946;
            padding: 20px;
            margin: 40px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .highlight-box p {
            margin: 0;
            font-style: italic;
            color: #2c3e50;
            font-size: 1.2rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .content-wrapper {
                padding: 20px 3%;
            }
            
            .mission-section {
                padding: 30px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .container-title {
                font-size: 1.6rem;
            }
            
            .points-list li {
                padding-left: 30px;
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .content-wrapper {
                padding: 15px;
            }
            
            .mission-section {
                padding: 20px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .container-title {
                font-size: 1.4rem;
            }
            
            .points-list li {
                padding-left: 25px;
            }
            
            .vision-belief, .objective-section {
                padding: 15px;
            }
        }