body, html {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial, sans-serif';
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
}

.container {
    width: 100%;
    max-width: 700px; /* Adjust this to the maximum width you want for your container */
    margin: 0 auto; /* This centers the container */
    position: relative; /* This allows the sticky-title to be positioned relative to the container */
}

.sticky-title {
    position: sticky;
    top: 0;
    /* background-color: #000; */
    padding: 20px;
    z-index: 1000;
    padding:0;
    padding-bottom: 50px;
    /* filter: blur(5px); */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5));
    z-index: 1000;
    margin: 0;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);

}

.sticky-title h1 h2 {
    margin: 0;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

main {
    padding-top: 0px; /* Adjust based on the height of your sticky title */
}

header {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(180deg, #121212, #2C2C2C);
}

.logo {
    width: 150px;
}

.header-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.introduction, .features {
    margin-bottom: 3rem;
    text-align: center;
}

.intro-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 1rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-text {
    margin-left: 1.5rem;
    text-align: left;
}

.feature-image {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

footer {
    text-align: center;
    padding: 1rem; /* Adjusted from 2rem to 1rem to reduce height */
    /* background-color: #2C2C2C; */
    background-color: #222222;
    position: fixed; /* Makes the footer stick to the bottom */
    bottom: 0; /* Positions it at the bottom of the viewport */
    width: 100%;
    box-sizing: border-box;
    max-width: 700px;
}

.cta-button {
    padding: 1rem 2rem;
    margin: 1rem;
    border: none;
    background-color: #0B93D5;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}

.footer-links a {
    color: #E0E0E0;
    margin: 0 1rem;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (min-width: 600px) {
    .feature {
        flex-direction: row;
        justify-content: space-between;
    }
    .feature-text {
        margin-left: 2rem;
    }
}

.contact-details {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail h2 {
    margin-bottom: 0.5rem;
}

.contact-detail p {
    margin-bottom: 0.5rem;
}

.contact-detail a {
    color: #0B93D5; /* Choose a brighter shade that suits your design */
    text-decoration: underline; /* Underlining to indicate it's a clickable link */
}

.contact-detail a:hover {
    color: #00eaff; /* Different color for hover state for a dynamic effect */
}

.blur-effect {
    position: sticky;
    top: 100px; /* Adjust this value to match the height of your sticky title */
    height: 10px;
    width: 100%;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

