        /* Global Styles */
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* About Us Section */
        .about-section {
            padding: 100px 0;
        }

        /* Our Story Section */
        .our-story {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 80px;
        }

        .story-content {
            flex: 1;
        }

        .story-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            height: 500px;
        }

        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .story-image:hover img {
            transform: scale(1.03);
        }

        .section-header {
            margin-bottom: 30px;
        }

        .section-subtitle {
            font-size: 16px;
            font-weight: 600;
            color: #4CAF50;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            color: #333;
            line-height: 1.3;
            margin: 0;
        }

        .section-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 16px;
        }

        /* Mission & Vision Section */
        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 80px;
        }

        .mission-card, .vision-card {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .mission-card:hover, .vision-card:hover {
            transform: translateY(-5px);
        }

        .mission-card {
            border-top: 4px solid #4CAF50;
        }

        .vision-card {
            border-top: 4px solid #2196F3;
        }

        .mv-icon {
            width: 60px;
            height: 60px;
            background: #f1f1f1;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: #4CAF50;
            font-size: 24px;
        }

        .vision-card .mv-icon {
            color: #2196F3;
        }

        .mv-title {
            font-size: 22px;
            color: #333;
            margin-bottom: 15px;
        }

        .mv-description {
            color: #666;
            line-height: 1.6;
        }

        /* What We Do Section */
        .what-we-do {
            margin-bottom: 80px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: #4CAF50;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #4CAF50;
            color: white;
            border-radius: 50%;
            font-size: 32px;
        }

        .service-title {
            font-size: 22px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        .service-description {
            color: #666;
            line-height: 1.6;
            margin: 0;
            font-size: 16px;
        }

        /* Values Section */
        .values-section {
            margin-bottom: 60px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .value-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-5px);
        }

        .value-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            color: white;
        }

        .value-icon.integrity { background: #607D8B; }
        .value-icon.excellence { background: #FF9800; }
        .value-icon.innovation { background: #9C27B0; }
        .value-icon.impact { background: #E91E63; }
        .value-icon.sustainability { background: #4CAF50; }

        .value-title {
            font-size: 18px;
            color: #333;
            margin-bottom: 15px;
        }

        .value-description {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        /* Buttons */
        .cta-button {
            display: inline-block;
            padding: 12px 28px;
            background-color: #4CAF50;
            color: white;
            font-weight: 600;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 15px;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background-color: #3e8e41;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* ==================== */
        /* RESPONSIVE BREAKPOINTS */
        /* ==================== */

        /* For tablets and smaller desktops */
        @media (max-width: 992px) {
            .our-story {
                gap: 30px;
            }
            
            .story-image {
                height: 400px;
            }
            
            .mission-vision {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        /* For tablets */
        @media (max-width: 768px) {
            .about-section {
                padding: 70px 0;
            }
            
            .our-story {
                flex-direction: column;
            }
            
            .story-image {
                order: 2;
                height: 350px;
                width: 100%;
            }
            
            .story-content {
                order: 1;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .values-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .mission-card, 
            .vision-card {
                padding: 30px;
            }
        }

        /* For mobile devices */
        @media (max-width: 576px) {
            .section-title {
                font-size: 28px;
            }
            
            .story-image {
                height: 300px;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .mission-card, 
            .vision-card {
                padding: 25px 20px;
            }
            
            .mv-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .service-icon {
                width: 70px;
                height: 70px;
                font-size: 28px;
            }
        }

        /* For very small mobile devices */
        @media (max-width: 400px) {
            .about-section {
                padding: 50px 0;
            }
            
            .section-title {
                font-size: 26px;
            }
            
            .story-image {
                height: 250px;
            }
        }