        /* General settings */
        body {
            font-family: Arial, sans-serif;
            margin: auto;
            padding: 0;
            background-color: #f9f9f9;
            max-width: 60%;

        }

        /* Header */
        header {
            background-color: #007bff;
            color: white;
            padding: 20px;
            text-align: center;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 60px 20px;
            background-color: white;
        }

        .hero h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
        }

        .hero p {
            margin-bottom: 2.87rem;
            font-size: 1.2em;
            color: #666;
        }

        .hero .cta-button {
            background-color: #007bff;
            color: white;
            margin-top: 3rem;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1em;
            cursor: pointer;
            text-decoration: none;
        }

        .hero .cta-button:hover {
            background-color: #0056b3;
        }

        /* Mission Section */
        .mission {
            padding: 40px 20px;
            text-align: center;
            background-color: #f2f2f2;
        }

        .mission p {
            font-size: 1.2em;
            color: #333;
        }

        /* Services Section */
        .services {
                flex: auto;
                padding: 40px 20px;
                text-align: center;
                background-color: white;
        }

        .services h2 {
            margin-bottom: 30px;
        }

        .service-item {
            display: inline-block;
            width: 25%;
            margin: 0 1.5%;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            background-color: #f9f9f9;
        }

        .service-item h3 {
            font-size: 1.5em;
            margin-bottom: 15px;
        }

        .service-item p { 
            font-size: 1em;
            color: #666;
        }

        /* Why Us Section */
        .why-us {
            padding: 40px 20px;
            text-align: center;
            background-color: #f2f2f2;
        }

        .why-us ul {
            list-style-type: none;
            padding: 0;
        }

        .why-us li {
            margin-bottom: 10px;
            font-size: 1.2em;
            color: #333;
        }

        /* Footer */
        footer {
            padding: 20px;
            text-align: center;
            background-color: #007bff;
            color: white;
            font-size: 0.9em;
        }

        footer a {
            color: white;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }
        .logo {
            padding-top: 2rem;
        }
        .logo > a {   
            text-decoration: none;
            color: white;
            font-size: 3rem;
            font-weight: 600;
        }

        /* Media Queries */
        @media (max-width: 1024px) {
            body {
                max-width: 80%;
            }

            .hero h1 {
                font-size: 2em;
            }

            .service-item {
                width: 45%;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 768px) {
            body {
                max-width: 90%;
            }

            .hero h1 {
                font-size: 1.75em;
            }

            .hero p {
                font-size: 1em;
            }

            .service-item {
                width: 100%;
                margin: 0 0 20px 0;
            }
        }

        @media (max-width: 480px) {
            body {
                max-width: 100%;
            }

            .hero h1 {
                font-size: 1.5em;
            }

            .hero p {
                font-size: 0.9em;
            }

            .hero .cta-button {
                font-size: 0.9em;
                padding: 10px 20px;
            }

            .service-item {
                width: 100%;
                margin: 0 0 20px 0;
            }

            .mission p,
            .why-us li {
                font-size: 1em;
            }

            footer {
                font-size: 0.8em;
            }
        }