 body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            text-align: center;
        }

        header {
            background: linear-gradient(90deg, #0d6efd, #2e7d32);
            color: white;
            padding: 20px 0;
            font-size: 24px;
            font-weight: bold;
            text-transform: uppercase;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }

        .btn {
            background-color: white;
            color: #0d6efd;
            padding: 10px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
        }

        .container {
            width: 80%;
            margin: 50px auto;
            padding: 30px;
            background: white;
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
            border-radius: 10px;
        }

        h2 {
            color: #0d6efd;
            font-size: 32px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .service {
            background: linear-gradient(90deg, #0d6efd, #2e7d32);
            padding: 20px;
            margin-bottom: 25px;
            border-radius: 8px;
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
            text-align: left;
            border-left: 7px solid #66cc99;
            color: white;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .service img {
            width: 180px;
            height: 150px;
            object-fit: cover;
            border-radius: 10px;
        }

        .service-content {
            flex: 1;
        }

        .service h3 {
            color: #a3e4a1;
            font-size: 24px;
            margin-bottom: 10px;
        }

        .service p {
            font-size: 18px;
            color: #e0e0e0;
            line-height: 1.5;
        }

        .service-category {
            margin: 40px 0 20px;
            text-align: left;
        }

        .service-category h3 {
            color: #2e7d32;
            font-size: 28px;
            border-bottom: 2px solid #0d6efd;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .service-item {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            text-align: left;
            border-left: 5px solid #0d6efd;
        }

        .service-item h4 {
            color: #2e7d32;
            margin-top: 0;
            font-size: 20px;
        }

        .service-item p {
            color: #555;
            margin-bottom: 0;
            font-size: 16px;
        }

        .intro-text {
            font-size: 18px;
            color: #333;
            line-height: 1.6;
            margin-bottom: 30px;
            text-align: center;
        }