        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header Styles */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Alternating Layout */
        .service-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin-bottom: 80px;
            gap: 40px;
            
        }

        .service-content {
            flex: 1;
            min-width: 300px;
        }

        .service-image {
            flex: 1;
            min-width: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .service-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .service-container:hover .service-image img {
            transform: scale(1.03);
        }

        .service-content h3 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .service-content p {
            color: #7f8c8d;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }

        /* Alternate alignment */
        .service-container:nth-child(odd) {
            flex-direction: row;
        }

        .service-container:nth-child(even) {
            flex-direction: row-reverse;
        }

        /* Button Styles */
        .button {
            display: inline-block;
            padding: 12px 25px;
            background-color: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: 2px solid #3498db;
        }

        .button:hover {
            background-color: transparent;
            color: #3498db;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            .service-container,
            .service-container:nth-child(odd),
            .service-container:nth-child(even) {
                flex-direction: column;
            }

            .service-content,
            .service-image {
                min-width: 100%;
            }

            .service-content h3 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .section-header h2 {
                font-size: 1.8rem;
            }

            .button {
                width: 100%;
                text-align: center;
            }
        }

/* About Us Section */


        /* Reset and Base Styles */
        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        } */

        /* body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        } */

        /* .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        } */

        /* section {
            padding: 80px 0;
        } */

         h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 30px;
            text-align: center;
        }

        /*h3 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 20px;
        } */

        /* p {
            margin-bottom: 20px;
            color: #555;
            font-size: 1.1rem;
        } */

        /* Button Styles */
        /* .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: 2px solid #3498db;
            text-align: center;
        }

        .btn:hover {
            background-color: transparent;
            color: #3498db;
        }

        .btn-large {
            padding: 15px 40px;
            font-size: 1.1rem;
        } */

        /* Hero Section */
        .hero {
            /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/accounting-hero.jpg'); */
            background-size: cover;
            background-position: center;
            color: #f1f5f9;
            text-align: center;
            padding: 20px 0px;
            
        }

        .hero h1 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.3rem;
            color: #474545;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        /* Section Styles */
        .section-light {
            background-color: #fff;
        }

        .section-dark {
            background-color: #f1f5f9;
        }

        /* Our Story */
        .our-story {
            text-align: center;
        }

        .our-story p {
            max-width: 800px;
            margin: 0 auto 20px;
        }

        /* What We Do */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-card {
            background: #fff;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-card h4 {
            font-size: 1.3rem;
            color: #3498db;
            margin-bottom: 15px;
        }

        /* Why Choose Us */
        .benefits-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .benefit-item {
            background: #fff;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .benefit-item i {
            font-size: 2.5rem;
            color: #3498db;
            margin-bottom: 20px;
        }

        .benefit-item h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        /* Mission & Vision */
        .mission-vision {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .mission, .vision {
            padding: 30px;
            border-radius: 8px;
        }

        .mission {
            background-color: #e3f2fd;
        }

        .vision {
            background-color: #e8f5e9;
        }

        /* Meet Our Team */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .team-member {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .team-member img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .team-member-info {
            padding: 20px;
        }

        .team-member h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .team-member p.position {
            color: #3498db;
            font-weight: bold;
            margin-bottom: 15px;
        }

        /* CTA Section */
        .cta {
            text-align: center;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/accounting-cta.jpg');
            background-size: cover;
            background-position: center;
            color: white;
        }

        .cta h2 {
            color: white;
        }

        .cta p {
            color: #eee;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }

            h2 {
                font-size: 2rem;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 50px 0;
            }

            .hero {
                padding: 100px 20px;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .btn {
                width: 100%;
            }
        }