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

/* Body Styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro", "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Content Container */
.content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Image Styling */
.responsive-img {
    max-width: 300px;
    height: auto;
    margin-right: 20px;
    border-radius: 10px;
}

/* Text Container */
.text {
    max-width: 600px;
    line-height: 1.6;
}

/* Headings */
h2 {
    font-family: 'Arial', sans-serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

/* Paragraphs */
p {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Emphasizing Strong Text */
strong {
    font-weight: bold;
    color: #0078d4;
}

/* Features and Getting Started sections layout */
.features, .getting-started {
    background-color: #f8f8f8;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    flex: 1;
    line-height: 1.4; /* Adjust this value as needed */
}

/* Container for Features and Getting Started */
.features-getting-started-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* List style customization */
.features ul, .getting-started ol {
    list-style: none;
    /* padding-left: 20px; */
}

.list-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.icon {
    width: 30px; /* Adjust size */
    height: auto;
    margin-right: 20px;
    align-self: flex-start; /* Keep icon at the top */
}

.text-section {
    display: flex;
    flex-direction: column;
    max-width: 350px; /* Adjust based on spacing needs */
}

.title {
    font-weight: bold;
}

.description {
    color: #555;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .features-getting-started-container {
        flex-direction: column;
    }

    .features {
        order: 1;
    }

    .getting-started {
        order: 2;
    }
}

@media (max-width: 320px) {
    .content {
        padding: 10px; /* Reduce padding */
    }

    .responsive-img {
        max-width: 100%; /* Ensure images scale properly */
        height: auto;
    }

    .features, .getting-started {
        flex-direction: column; /* Stack sections */
        text-align: center;
    }

    .list-item {
        flex-direction: row; /* Ensure icon stays aligned properly */
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-banner button {
    background: #0078d4;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.cookie-banner button:hover {
    background: #005a9e;
}

/* JavaScript to handle cookies */
<script>
    document.addEventListener("DOMContentLoaded", function() {
        if (!localStorage.getItem("cookiesAccepted")) {
            document.getElementById("cookie-banner").style.display = "flex";
        }
    });

    function acceptCookies() {
        localStorage.setItem("cookiesAccepted", "true");
        document.getElementById("cookie-banner").style.display = "none";
    }
</script>

<!-- Cookie Consent Banner -->
<div id="cookie-banner" class="cookie-banner" style="display: none;">
    <p>We use cookies to improve your experience. By continuing, you agree to our use of cookies.</p>
    <button onclick="acceptCookies()">Accept</button>
</div>

