html {
  font-size: 14px;  
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.convert-form-page {
    background-color: #130907;
    background-image: url('/convertForm.jpg');
    background-repeat: no-repeat;
    background-size: cover; /* Scale proportionally to cover viewport width */
    background-attachment: fixed; /* Ensure image stays fixed on scroll */
    height: 100vh; /* Ensure the element fills the entire viewport height */
}

    .convert-form-page form {
        margin: 0 auto;
        width: 70%; /* Keep some auto margin from viewport */
        color: white;
        padding-top: 50px;
    }

/* Basic styles */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #130907;
    background-size: cover; /* Scales proportionally to cover viewport width */
    background-attachment: fixed; /* Ensures image stays fixed on scroll */
    background-repeat: no-repeat; /* Prevents image from repeating */
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    padding: 20px;
    margin: 0 auto;
}

h1, h2, h3 {
    margin: 10px 0;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

    .background-container img {
        min-width: 50px;
        min-height: 50px;
        width: 100%; /* Scales image to container width */
        height: auto; /* Maintains aspect ratio */
        object-fit: cover; /* Ensures image covers container */
    }

.content-container {
    max-width: 1000px; /* Adjust as needed */
    padding: 20px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.25); /* Semi-transparent white background */
    position: relative; /* Allows positioning of content sections within */
}

/* Hero section */
.hero {
    background-position: center;
    padding: 100px 0;
    color: #fff;
    text-align: center;
    text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000;
}

    .hero h1 {
        font-size: 3em;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1.2em;
        line-height: 1.5;
        margin-bottom: 40px;
    }

/* Product section */
.product {
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 40px;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
}

    .product h2 {
        text-align: center;
        margin-bottom: 20px;
    }

    .product p {
        line-height: 1.5;
        margin-bottom: 20px;
    }

.mission, .privacy, .features {
    padding: 30px 0;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.75); /* Semi-transparent white background */
    margin-bottom: 2rem; /* space between the sections */
}

    .mission p, .privacy p, .mission h3, .privacy h3, .features li, .features h3, .features h2 {
        margin-left: 1rem;
    }

    .mission h3, .privacy h3, {
        text-align: center;
        margin-bottom: 20px;
    }

    .features h3 {
        margin-bottom: 20px;
    }

    .mission p, .privacy p, .features p {
        line-height: 1.5;
    }

/* Cookie consent */
.cookie-consent {
    background-color: rgba(238, 238, 238, 0.7); /* Semi-transparent white background */
    background-color: #eee;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .cookie-consent p {
        margin: 0 10px;
    }

.download-quote {
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    display: grid;
    grid-template-rows: auto 1fr; /* Define rows: header, columns */    
}

.h2-container {
    text-align: center; /* Center the h2 within its container */
}
.columns {
    display: flex; /* Nest flexbox for columns within the section */
    padding: 20px;
    flex: 1 0 auto;
}

.column {
    flex: 1; /* Make columns equally sized */
    text-align: center; /* Center content within columns */
    padding: 30px 0;
}

@media (max-width: 768px) { /* Adjust breakpoint as needed */
    .columns {
        flex-wrap: wrap; /* Wrap columns on smaller screens */
    }
}

#deploymentBanner {
    background-color: red;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100; /* Ensure the banner stays on top of other elements */
}
