/* General page styles */
body {
    background-image: url('..Background.jpg'); /* Background image */
    background-size: cover; 
    background-position: center center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    padding-top: 60px; /* Add padding to the top of the body */
}

.container {
    background-color: rgba(255, 255, 255, 0.9); /* White background with slight transparency */
    max-width: 1140px; 
    margin: 0 auto;
    padding: 60px 30px 30px; /* Added top padding of 60px */
    border-radius: 10px;
}

.preheader {
    font-size: 18px;
    color: #333;
    text-align: center;
    font-weight: bold;
}

.headline {
        margin-left: 30px; /* Add margin to the left */
        margin-right: 30px; /* Add margin to the right */
        font-size: 36px;
        font-weight: bold;
        text-align: center;
        color: #007bff; 
        margin-top: 20px;   
}

.row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.col-left {
    flex: 1;
    text-align: center;
}

.col-right {
    flex: 1;
    padding: 20px;
}

/* Style for bullet points with images */
      .bullet-points {
        list-style-type: none; /* Remove default bullets */
        padding-left: 0; /* Remove left padding */
      }


.bullet-points li {
        background: url('imgs/bullet.png') no-repeat left center; /* Add custom bullet image */
        padding-left: 30px; /* Space out the bullet point from the text */
        margin-bottom: 10px; /* Increase space between list items */
        font-size: 18px; /* Adjust font size */
      }

.modal-button {
    background-color: #28a745;
    color: white;
    padding: 15px 30px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    display: inline-block; /* Ensure the button takes full width */
    text-align: center;
    margin-top: 20px; /* Adds some space above the buttons */
}

.modal-button:hover {
    background-color: #218838;

 
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 30px;
    border-radius: 5px;
    width: 80%;
    max-width: 500px;
}

.close {
    color: #aaa;
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.footer {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    background-color: #333;
    color: #fff;
    margin-top: 30px;
}
.download-section {
    margin-bottom: 40px; /* Adds space between the download button and the affiliate offer section */
}

/* Separate section for the affiliate offer button */
.affiliate-offer-section {
    margin-top: 40px; /* Adds space above the affiliate offer section */
}