<style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }
    header {
    background: linear-gradient(to right, <?php echo $siteColor; ?>, <?php echo $secondarysiteColor; ?>);
    color: #fff;
    padding: 1rem;
    display: flex;
    align-items: center;
    position: fixed; 
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    box-sizing: border-box;
    overflow: hidden; 
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 1rem; 
}

nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-start; 
    overflow: hidden;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap; 
}



        .hero {
            background: url('<?php echo $siteBackgroundImage; ?>') no-repeat center center/cover;
            color: #fff;
            text-align: center;
            padding: 4rem 1rem;
            position: relative;
            margin-top: 5px;
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .hero h1 {
            margin-bottom: 1rem;
            font-size: 3rem;
        }
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        .hero .buttons a {
    display: inline-block;
    background: linear-gradient(to right, <?php echo $secondarysiteColor; ?>, <?php echo $siteColor; ?>);
    color: #fff;
    padding: 0.8rem 1.5rem;
    margin: 0.5rem; 
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
}

.hero .buttons a:hover {
    background: linear-gradient(to right, <?php echo $siteColor; ?>, <?php echo $secondarysiteColor; ?>);
    transform: scale(1.05);
}


        .section {
            padding: 2rem 1rem;
            text-align: center;
        }
        .section h2 {
            margin-bottom: 1.5rem;
            color: <?php echo $siteColor; ?>;
            font-weight: bold; 
        }
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .service-card {
            border: 1px solid #ddd;
            padding: 1rem;
            border-radius: 8px;
            background: #fff;
            text-align: left;
        }
        .service-card img {
            width: 100%;
            height: auto;
            border-radius: 5px;
            margin-bottom: 1rem;
        }
        .cta-section {
            background: <?php echo $siteColor; ?>;
            color: #fff;
            padding: 1rem; 
        }
        .api-section {
            background: #f9f9f9;
            padding: 2rem 1rem;
            text-align: center;
        }
        .api-section .api-diagram {
            max-width: 100%;
            margin-top: 1rem;
        }
        .pricing-options {
            display: flex;
            justify-content: center;
            gap: 2rem;
            text-align: left;
        }
        .pricing-options div {
            border: 1px solid #ddd;
            padding: 1rem;
            border-radius: 8px;
            background: #fff;
        }
        .testimonials {
            background: #f4f4f4;
            padding: 2rem;
        }
        .testimonial {
            margin-bottom: 1rem;
            font-style: italic;
        }
       .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background-color: #000000;
    color: white;
    flex-wrap: wrap;
    margin-top: 20px;
}
 
.footer-left {
    flex: 1;
    text-align: left;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-center {
    text-align: center;
    margin-top: 20px;
}

.footer-section {
    margin-bottom: 15px;
}

.main-link {
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.dropdown-icon {
    margin-left: 10px;
    font-size: 12px;
    cursor: pointer;
}

.sub-links {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: none;
}

.sub-links li {
    margin: 5px 0;
}

.sub-links a {
    text-decoration: underline;
    color: white;
    transition: color 0.3s;
}

.sub-links a:hover {
    color: #ddd;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.social-media a {
    margin: 0 10px;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #ddd;
}

.app-download a {
    margin: 0 10px;
    color: white;
    text-decoration: underline;
    font-size: 16px;
    transition: color 0.3s;
}

.payment-methods img {
    margin: 0 10px;
    height: 30px;
    vertical-align: middle;
}

.company-info p {
    margin: 5px 0;
    font-size: 16px;
    font-weight: bold;      
}
        
          .cta-section {
            background: <?php echo $siteColor; ?>; 
            color: #fff;
            padding: 2rem;
        }
        
        body {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
        body * {
            -webkit-user-drag: none;
            -moz-user-drag: none;
            -ms-user-drag: none;
            user-drag: none;
        }
        body:after {
            content: "";
            display: none;
        }