@charset "utf-8";
/* CSS Document */

        body {
            font-family: "Outfit",Arial, sans-serif;
            margin: 0;
            padding: 0;
			font-size:18px;
            background-color: #000;
            color: #333;
        }

        a {
            color: #ffcc66;
			font-size:0.8em;
            text-decoration: none;
        }

        header {
			background-color: #000000;
            color: #fff;
            text-align: center;
            padding: 40px 10px 0px 10px;
        }

        header img {
            max-height:150px;
			display: block;
            margin: 0 auto;
        }

        header h1 {
            margin: 30px 0 5px;
            font-size: 1.6em;
        }

        header h2 {
            font-size: 1.4em;
        }
		
        header p {
            font-size: 1.2em;
        }

        section {
            max-width: 900px;
            background: #000;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

		section h2 {
            color: #cccccc;
            font-size: 1.4em;
        }

        .services {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .service {
            
			margin: 30px;
            padding: 20px;
            background-color: #fff;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .service:hover {
            transform: scale(1.02);
        }

        .service h3 {
            font-size: 1.5em;
            margin-bottom: 10px;
            color: #ff9933;
        }

        .service p {
            font-size: 1em;
            line-height: 1.5;
            color: #333;
        }

        .service ul {
            list-style-type: none;
            padding: 0;
        }

        .service li {
            margin: 10px 0;
            font-size: 1em;
            line-height: 1.5;
        }

        .service li:before {
            content: "✔";
            color: #ffcc66;
            margin-right: 10px;
        }


        benefits h2 {
            text-align: center;
            color: #26dbd2;
            font-size: 2em;
        }

        footer {
            background-color: #000;
            color: #fff;
            text-align: center;
            padding: 20px;
        }

        footer p {
            margin: 5px 0;
            font-size: 0.7em;
        }

        footer a {
            color: #eba537;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }


