        @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;800&display=swap');

        :root {
            --primary-color: #2a9d8f; /* Teal */
            --secondary-color: #264653; /* Darker teal */
            --light-bg: #ffffff; /* White background */
            --text-color: #333; /* Text color */
            --cta-bg: #e76f51; /* Coral */
            --cta-hover: #f4a261; /* Lighter coral */
        }

      /*  body {
            font-family: 'Nunito', sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--light-bg);
            color: var(--text-color);
        }
*/
        .hero-sectionH {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 50px 20px;
            max-width: 1200px;
            margin: auto;
            gap: 20px;
            
        }

        .hero-imageH {
            flex: 1;
        }

        .hero-imageH img {
            width: 100%;
            height: auto;
            border-radius: 10px;
          /*  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
        }

        .hero-contentH {
            flex: 1;
            max-width: 600px;
        }

        .hero-contentH h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 800;
            color: var(--secondary-color);
        }

        .hero-contentH p {
            font-size: 18px;
            margin-bottom: 30px;
            color: var(--text-color);
        }

        .hero-contentH .cta-btnH {
            display: inline-flex;
            align-items: center;
            padding: 15px 30px;
            background-color: #6823a0;
            color: #fff;
            text-decoration: none;
            border-radius: 59px;
            font-size: 18px;
            font-weight: 600;
            gap: 10px;
            transition: background-color 0.3s ease;
        }

        .hero-contentH .cta-btnH:hover {
            background-color: var(--cta-hover);
        }

        @media (max-width: 768px) {
            .hero-sectionH {
                flex-direction: column;
                text-align: center;
            }

            .hero-imageH {
                margin-bottom: 10px;
            }
            .hero-imageH img {
              display: none;
            }

            .hero-contentH {
                max-width: 100%;
            }
                    .hero-sectionH {
                      margin-top: -30px;
                    }
        }