
        .about-container {
            max-width: 1200px;
            margin: 70px auto;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Hero Section */
        .about-hero {
            background: linear-gradient(to right, #1a2a3a, #2c3e50);
            color: white;
            padding: 60px 40px;
            text-align: center;
        }

        .about-hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #fff800;
        }

        .about-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* Content Sections */
        .about-section {
            padding: 40px;
            border-bottom: 1px solid #eaeaea;
        }

        .about-section:last-child {
            border-bottom: none;
        }

        .about-section h2 {
            color: #2c3e50;
            margin-bottom: 25px;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 10px;
        }

        .about-section h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: #fff800;
        }

        .about-section p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .feature-card {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            border-left: 4px solid #fff800;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-card h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
        }

        .feature-card i {
            font-size: 1.8rem;
            color: #fff800;
            margin-right: 15px;
        }

        /* Lists */
        .about-list {
            list-style-type: none;
            margin: 20px 0;
        }

        .about-list li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            font-size: 1.1rem;
        }

        .about-list li:before {
            content: "•";
            color: #fff800;
            font-weight: bold;
            font-size: 1.5rem;
            position: absolute;
            left: 10px;
            top: 8px;
        }

        /* Services */
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .service-card {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-top: 4px solid #2c3e50;
        }

        .service-card h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        /* Why Choose Us Section */
        .why-choose-us {
            background: linear-gradient(to right, #1a2a3a, #2c3e50);
            color: white;
            padding: 50px 40px;
        }

        .why-choose-us h2 {
            color: #fff800;
        }

        .why-choose-us h2:after {
            background: white;
        }

        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .reason {
            text-align: center;
            padding: 25px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            backdrop-filter: blur(5px);
        }

        .reason i {
            font-size: 2.5rem;
            color: #fff800;
            margin-bottom: 15px;
        }

        .reason h3 {
            color: white;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .reason p {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Testimonials */
        .testimonials {
            background: #f8f9fa;
            padding: 40px;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .testimonial {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .testimonial:before {
            content: """;
            font-size: 5rem;
            color: #fff800;
            position: absolute;
            top: -20px;
            left: 15px;
            opacity: 0.2;
            font-family: Georgia, serif;
        }

        .testimonial p {
            font-style: italic;
            margin-bottom: 15px;
        }

        .testimonial cite {
            display: block;
            font-style: normal;
            font-weight: bold;
            color: #2c3e50;
            text-align: right;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 50px 40px;
            background: linear-gradient(to right, #1a2a3a, #2c3e50);
            color: white;
        }

        .cta-section h2 {
            color: #fff800;
            margin-bottom: 20px;
        }

        .cta-section h2:after {
            display: none;
        }

        .cta-btn {
            display: inline-block;
            background: #fff800;
            color: #2c3e50;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 20px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            border: 2px solid #fff800;
        }

        .cta-btn:hover {
            background: transparent;
            color: #fff800;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 2.2rem;
            }
            
            .about-hero p {
                font-size: 1rem;
            }
            
            .about-section {
                padding: 30px 20px;
            }
            
            .about-section h2 {
                font-size: 1.5rem;
            }
        }