

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Helvetica', serif;
            line-height: 1.6;
            color: #333;
        }

        header {
     background: linear-gradient(135deg, rgb(232, 240, 254) 0%, #764ba217 100%);
    color: black;
    padding: 2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
        color: #000;
    text-decoration: none;
    transition: opacity 0.3s;
        }

        .nav-links a:hover {
            opacity: 0.7;
        }

        .hero {
    /* background: linear-gradient(rgba(102, 126, 234, 0.7), rgba(118, 75, 162, 0.7)), url(data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f0e6f6" width="1200" height="600"/><path fill="%23d4c5e0" d="M0 300L50 280C100 260 200 220 300 200C400 180 500 180 600 200C700 220 800 260 900 270C1000 280 1100 260 1150 250L1200 240V600H1150C1100 600 1000 600 900 600C800 600 700 600 600 600C500 600 400 600 300 600C200 600 100 600 50 600H0V300Z"/></svg>); */
    /* background-size: cover; */
    background-position: center;
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: end;
    /* text-align: center; */
    color: black;
    /* background-color: chocolate; */
    margin-top: 0px;
    background-image: url(../temp/images/8.jpg);
        }

        .hero-content h1 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            /*text-shadow: 2px 2px 4px rgba(0,0,0,0.3);*/
            color: aliceblue;
    text-align: end;
        }

        .hero-content p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            /*text-shadow: 1px 1px 2px rgba(0,0,0,0.3);*/
            color: aliceblue;
    text-align: end;
        width: 573px;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: white;
            color: #667eea;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            float: inline-end;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        section {
            padding: 5rem 2rem;
            max-width: 1600px;
            margin: 0 auto;
            background-color: antiquewhite;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #667eea;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
                background: #f2b1b1;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
            border-color: #667eea;
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            color: #764ba2;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .price {
            font-size: 1.3rem;
            color: #667eea;
            font-weight: bold;
            margin-top: 1rem;
        }

        #about {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .slideshow-container {
            max-width: 900px;
            position: relative;
            margin: 0 auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .slide {
            display: none;
        }

        .slide-content {
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 15px;
        }

        .slide-text {
            font-size: 3rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .fade {
            animation: fadeEffect 1s;
        }

        @keyframes fadeEffect {
            from { opacity: 0.4; }
            to { opacity: 1; }
        }

        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            margin-top: -22px;
            padding: 16px;
            color: white;
            font-weight: bold;
            font-size: 2rem;
            transition: 0.3s;
            border-radius: 0 3px 3px 0;
            user-select: none;
            background-color: rgba(0,0,0,0.3);
        }

        .next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }

        .prev:hover, .next:hover {
            background-color: rgba(0,0,0,0.6);
        }

        .dots-container {
            text-align: center;
            padding: 20px;
        }

        .dot {
            cursor: pointer;
            height: 15px;
            width: 15px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.3s;
        }

        .dot:hover,
        .dot.active {
            background-color: #667eea;
        }

        .video-container {
            max-width: 900px;
            margin: 0 auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .video-container iframe {
            display: block;
        }

        .video-caption {
            text-align: center;
            margin-top: 1.5rem;
            font-style: italic;
            color: #667eea;
            font-size: 1.1rem;
        }

        #video {
            background: #f9f9f9;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.1rem;
        }

        .about-image {
            /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
            height: 400px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 5rem;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            /*background: #f9f9f9;*/
            padding: 2rem;
            border-radius: 15px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #667eea;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .submit-btn:hover {
            transform: scale(1.05);
        }

        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .social-links {
            margin-top: 1rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: #667eea;
        }

        @media (max-width: 768px) {
            .nav-links {
                gap: 1rem;
                font-size: 0.9rem;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
                        width: -webkit-fill-available;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            h2 {
                font-size: 2rem;
            }

            nav {
                padding: 33px;
            }

            header {
                padding: 0;
            }

            .logo {
                font-size: 1.2rem;
                /* font-weight: bold; */
                /* letter-spacing: 2px; */
            }

            .about-image {
                       width: 3.7em;
        /* justify-content: flex-start; */
        align-items: normal;
            }
        }

        @media (max-width: 425px) {
            nav {
                      padding: 0;
        width: 300px;
        position: fixed;
        left: 1em;
                top: 7px;
            }

            body {
                line-height: 1;
            }

            .logo {
                width: max-content;
            }

            .hero {
                /*background-position: left;*/
                /*margin-top: 71px;*/
            }

            section {
                padding: 5rem 1rem;
            }

            header {
                padding: 30px;
            }

            .about-image {
                    font-size: 5.5rem;
            }
        }
@media screen and (min-width: 375px) {
    .topmenu {
        left: 10px; 
        text-align: center;
    }
}