     /* --- Color Palette --- */
        :root {
            --primary-orange: #f28001;
            --text-dark: #333;
            --text-medium: #555;
            --background-light: #ffffff;
            --background-subtle: #fffaf7;
        }

        /* --- General & Typography --- */
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--background-light);
            color: var(--text-dark);
        }

        h1, h2, h3 {
            font-weight: 700;
            color: var(--primary-orange);
            margin-bottom: 1rem;
        }

        p {
            font-weight: 300;
            line-height: 1.7;
            color: var(--text-medium);
        }

        /* --- Custom Sections & Layout --- */
        .about-page-section-padding {
            padding: 80px 0;
        }

        .about-page-img-fluid-shadow {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .about-page-img-fluid-shadow:hover {
            transform: scale(1.02);
        }

        /* Hero Section (Focus on Image & Text Overlay) */
        .about-page-hero-section {
            height: 60vh;
            min-height: 400px;
            position: relative;
            background-size: cover;
            background-position: center;
            background-image: url('../Images/Backgrounds/1.jpg'); 
        }
        
        .about-page-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .about-page-hero-text h1 {
            font-size: 3.5rem;
            color: #fff;
            margin-bottom: 10px;
        }
        
        .about-page-hero-text p {
            color: #eee;
            font-size: 1.2rem;
            font-weight: 400;
        }

        /* Value/Service Card Styling */
        .about-page-service-card, .about-page-value-card {
            padding: 30px;
            border: 1px solid #f9e2d4;
            border-radius: 8px;
            transition: box-shadow 0.3s ease;
            text-align: center;
            height: 100%;
        }
        
        .about-page-service-card:hover, .about-page-value-card:hover {
            box-shadow: 0 8px 15px rgba(242, 128, 1, 0.2);
        }

        .about-page-service-icon, .about-page-value-icon {
            font-size: 2.5rem;
            color: var(--primary-orange);
            margin-bottom: 15px;
        }
        
        /* Subtle Background Section */
        .about-page-subtle-bg {
            background-color: var(--background-subtle);
            padding: 60px 0;
        }

        /* Buttons: Primary Orange Outline */
        .about-page-btn-outline-primary {
            color: var(--primary-orange);
            border-color: var(--primary-orange);
            transition: all 0.3s ease;
        }

        .about-page-btn-outline-primary:hover {
            background-color: var(--primary-orange);
            color: var(--background-light);
            border-color: var(--primary-orange);
        }

        /* Contact Section Specific Styling */
        .about-page-contact-section {
            background-color: var(--primary-orange);
            color: white;
            text-align: center;
        }
        
        .about-page-contact-section h2 {
            color: white;
        }

        .about-page-btn-contact {
            background-color: white;
            color: var(--primary-orange);
            border: none;
            font-weight: 600;
            padding: 10px 30px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .about-page-btn-contact:hover {
            background-color: #f0f0f0;
            color: var(--primary-orange);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Media Queries for Responsiveness */
        @media (max-width: 768px) {
            .about-page-hero-text h1 {
                font-size: 2.5rem;
            }
            .about-page-section-padding {
                padding: 40px 0;
            }
        }