
        /* --- Reset & Global Styling --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;

        }

        body {
            background-color: #f4f5f7; /* Sharekhan light gray backdrop */
            color: #22252a; /* Sharekhan charcoal */

        }

        /* --- Mission Section Layout --- */
        .mission-section {
            padding: 60px 20px;
            
            max-width: 1100px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            border-left: 6px solid #f8c301; /* Sharekhan signature yellow vertical accent */
        }

        .mission-container {
            display: flex;
            flex-wrap: wrap; /* Automatically wraps components on mobile screens */
            align-items: center; /* Vertically aligns image and text blocks */
        }

        /* --- Left Side: Visual Block --- */
        .mission-image-block {
            flex: 1 1 450px; /* Base structural width before wrap triggers */
            position: relative;
            background-color: #22252a;
            min-height: 380px;
            align-self: stretch; /* Forces image container to match content height */
        }

            .mission-image-block img {
                width: 100%;
                height: 100%;
                object-fit: cover; /* Keeps image proportions intact without stretching */
                display: block;
                opacity: 0.85; /* Slightly darkens image to match corporate aesthetic */
            }

        /* Decorative Brand Badge over the image */
        .brand-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background-color: #f8c301;
            color: #22252a;
            padding: 8px 16px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 2px;
        }

        /* --- Right Side: Content Block --- */
        .mission-content-block {
            flex: 1 1 500px; /* Base structural width before wrap triggers */
            padding: 50px;
        }

        .mission-tag {
            display: inline-block;
            color: #f8c301; /* Sharekhan Yellow */
            background-color: #22252a; /* Charcoal background for contrast */
            padding: 6px 14px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
            border-radius: 4px;
        }

        .mission-content-block h2 {
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #22252a;
        }

            .mission-content-block h2 span {
                color: #f8c301;
                border-bottom: 3px solid #22252a;
            }

        .mission-paragraph {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555555;
            margin-bottom: 30px;
        }

        /* --- Secondary Interactive Action Button --- */
        .mission-cta {
            display: inline-block;
            background-color: #22252a;
            color: #ffffff;
            text-decoration: none;
            padding: 12px 28px;
            font-weight: 700;
            font-size: 0.95rem;
            border-radius: 4px;
            border: 2px solid #22252a;
            transition: all 0.25s ease;
        }

            .mission-cta:hover {
                background-color: #f8c301;
                border-color: #f8c301;
                color: #22252a;
                transform: translateY(-2px);
                box-shadow: 0 4px 12px rgba(248, 195, 1, 0.2);
            }

        /* --- Responsive Tweaks --- */
        @media (max-width: 768px) {
            .mission-content-block {
                padding: 35px 25px;
            }

            .mission-image-block {
                min-height: 250px;
            }
        }
