
    @font-face{font-family:'Tajawal';src:url(Tajawal-Regular.ttf) format("truetype");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:'Tajawal';src:url(Tajawal-Bold.ttf) format("truetype");font-weight:700;font-style:normal;font-display:swap}
        body {
            font-family: 'Tajawal', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px;
        }

        h1 {
            color: #000;
            font-size: 50px;
            margin-bottom: 10px;
        }

        h2 {
            /*color: #555;*/
            color: #000;
            font-size: 24px;
            margin-bottom: 20px;
        }

        p {
            margin-bottom: 20px;
            font-size: 18px;
        }

        /* Header */
        .header {
            background-color: #008080;
            color: #fff;
            padding: 30px 0;
            text-align: center;
        }

        .header h1 {
            font-size: 40px;
        }

        .header h2 {
            font-size: 24px;
            color: #fff;
        }

        .header-logo img {
            margin-top: 10px;
            width: 90px;
            height: auto;
        }

        /* Services Section */
        .services {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        
        .services-prices-section {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
            justify-content: center; /* Centers the content horizontally */
            align-items: center; /* Centers the content vertically */
            min-height: 100vh; /* Ensures the section takes the full height of the viewport */
        }


        .service-item {
            background-color: #fff;
            flex: 1;
            padding: 20px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s;
        }

        .service-item:hover {
            transform: translateY(-10px);
        }

        .service-item h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #008080;
        }

        .service-item p {
            font-size: 16px;
            color: #666;
        }

        /* Testimonials Section */
        .testimonials {
            background-color: #f1f1f1;
            padding: 30px;
            margin: 50px auto;
            border-radius: 10px;
            text-align: center;
            max-width: 700px;
        }

        .testimonials h2 {
            color: #333;
            font-size: 28px;
            margin-bottom: 30px;
        }

        .testimonial-item {
            margin-bottom: 20px;
        }

        .testimonial-item p {
            font-style: italic;
            color: #666;
        }

        .testimonial-item span {
            display: block;
            margin-top: 10px;
            font-weight: bold;
            color: #008080;
        }

        /* Services and Prices Section */
        .services-prices {
            background-color: #fff;
            padding: 40px;
            margin-top: 50px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            text-align: center;
        }

        .services-prices h2 {
            color: #008080;
            margin-bottom: 30px;
        }

        .services-prices ul {
            list-style: none;
            padding: 0;
        }

        .services-prices li {
            font-size: 18px;
            margin-bottom: 10px;
            color: #333;
        }

        .services-prices .price {
            font-size: 24px;
            color: #008080;
            margin-top: 20px;
            font-weight: bold;
        }

        /* Contact Section */
        .contact {
            text-align: center;
            padding: 40px 20px;
            background-color: #008080;
            color: #fff;
            border-radius: 10px;
            margin-top: 50px;
        }

        .contact a {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
        }

        .contact a:hover {
            text-decoration: underline;
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 15px;
            background-color: #333;
            color: #fff;
            font-size: 14px;
            margin-top: 20px;
        }

        /* Responsive */
        @media screen and (max-width: 768px) {
            .services {
                flex-direction: column;
            }

            .testimonials {
                margin: 30px 20px;
            }

            .services-prices {
                margin: 30px 20px;
            }
        }
        
        
        .notice {
            /*background-color: #e74c3c;*/
            /*background-color: #b6dbdb;*/
            background-color: #008080;
            color: white;
            padding: 15px;
            border-radius: 4px;
            margin-top: 20px;
            text-align: center;
        }    
        .waiting-list-form {
        background-color: #ecf0f1;
        padding: 20px;
        border-radius: 4px;
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        }
        .waiting-list-form h3 {
            text-align: center;
            margin-bottom: 20px;
        }
        .waiting-list-form form {
            width: 100%;
            max-width: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .waiting-list-form input[type="email"] {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #bdc3c7;
            border-radius: 4px;
            text-align: center;
        }
        .waiting-list-form button {
            background-color: #2ecc71;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
        }
        .waiting-list-form button:hover {
            background-color: #27ae60;
        }
        .error-message {
            color: #e74c3c;
            margin-top: 5px;
            text-align: center;
        }
        
        #whatsapp-icon{position:fixed;right:20px;bottom:20px;z-index:99999}#whatsapp-icon img{width:50px;height:50px;cursor:pointer}
