/* style.css */

body {
    font-family: sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #007bff; /* A professional blue */
    color: white;
    padding: 40px 0;
    text-align: center;
}

header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-around; /* Distribute space around items */
}

header .logo {
    max-height: 120px; /* Increased maximum height to make the logo bigger */
    margin-right: 30px; /* Increased right margin for more space */
}

header .header-text {
    text-align: left; /* Align text to the left within its container */
    margin-right: 20px; /* Add some space between text and button */
}

header h1 {
    font-size: 2.2em;
    margin-bottom: 5px;
}

header .subheadline {
    font-size: 1.1em;
    margin-bottom: 15px;
}

header .button.primary {
    /* Inherits button styles */
}

.button {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.button.primary {
    background-color: #28a745; /* A positive green */
    color: white;
}

.button.secondary {
    background-color: #6c757d; /* A neutral grey */
    color: white;
}

.features-section, .how-it-works-section, .benefits-section, .cta-section {
    padding: 40px 0;
    text-align: center;
}

.features-section {
    background-color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.feature-item img {
    max-width: 80px;
    margin-bottom: 15px;
}

.how-it-works-section ol {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: left;
}

.how-it-works-section li {
    padding: 15px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
}

.benefits-and-bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 30px; /* Spacing between the sections */
    max-width: 1200px; /* Limit the overall width */
    margin: 40px auto; /* Center the grid with some top/bottom margin */
    padding: 0 20px; /* Add some horizontal padding for smaller screens */
}

.bonus-features-section,
.benefits-section {
    padding: 40px;
    background-color: #f9f9f9; /* Consistent background */
    border-radius: 8px; /* Optional rounded corners */
}

.bonus-features-section h2,
.benefits-section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
}

.bonus-features-section .feature-list,
.benefits-section .benefit-list {
    list-style-type: none;
    padding-left: 0;
    display: grid; /* Enable Grid for the list items */
    grid-template-columns: auto 1fr; /* Auto width for icon and title, 1fr for description */
    gap: 15px; /* Spacing between rows and columns */
}

.bonus-features-section .feature-list li,
.benefits-section .benefit-list li {
    display: contents; /* Allow grid items to span across the implicit grid created by the list item */
    align-items: flex-start; /* Align items to the top */
}

.bonus-features-section .feature-list svg,
.benefits-section .benefit-list svg {
    grid-column: 1 / 2; /* Place icon in the first column */
    align-self: start; /* Align icon to the start of the grid cell */
    margin-right: 10px; /* Adjust spacing */
}

.bonus-features-section .feature-list .feature-title,
.benefits-section .benefit-list .benefit-title {
    grid-column: 2 / 3; /* Place title in the second column */
    font-weight: bold;
}

.bonus-features-section .feature-list .feature-description,
.benefits-section .benefit-list .benefit-description {
    grid-column: 2 / 3; /* Place description in the second column */
}

/* Stack the sections on smaller screens */
@media (max-width: 768px) {
    .benefits-and-bonus-grid {
        grid-template-columns: 1fr; /* Single column */
    }

    .bonus-features-section,
    .benefits-section {
        margin-bottom: 30px; /* Add some spacing when stacked */
    }
}

.cta-section {
    background-color: #e9ecef; /* Light grey background for contrast */
}

.cta-section .container {
    text-align: center;
}

.cta-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

footer {
    background-color: #343a40; /* Dark grey footer */
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

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

/* Styles for the Privacy Policy page */
body.privacy-policy-page {
    font-family: sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.privacy-policy-container {
    max-width: 960px;
    width: 100%;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.privacy-policy-header {
    background-color: #007bff; /* Use the header background color */
    color: white;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.privacy-policy-header img {
    max-height: 80px;
    margin-bottom: 10px;
}

.privacy-policy-header h1 {
    font-size: 1.8em;
    margin-bottom: 5px;
}

.privacy-policy-header p {
    color: #e0f2f7;
    font-size: 0.9em;
}

.privacy-policy-container h2 {
    color: #007bff;
    margin-bottom: 15px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 8px;
    margin-top: 25px;
    text-align: left; /* Align headings to the left in the content */
}

.privacy-policy-container p {
    margin-bottom: 15px;
    color: #555;
    text-align: left; /* Align paragraphs to the left */
}

.privacy-policy-container ul {
    margin-bottom: 15px;
    padding-left: 20px;
    color: #555;
    text-align: left; /* Align lists to the left */
}

.privacy-policy-container li {
    margin-bottom: 8px;
}

.privacy-policy-container .contact-info {
    margin-top: 20px;
    text-align: left; /* Align contact info to the left */
}

.privacy-policy-container .contact-info h2 {
    text-align: left; /* Ensure contact info heading is also left-aligned */
}

.privacy-policy-container .footer-style {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    color: #777;
    border-top: 1px solid #eee;
}

.privacy-policy-container .footer-style a {
    color: #007bff;
    margin: 0 10px;
    text-decoration: none;
}

.privacy-policy-container .footer-style a:hover {
    text-decoration: underline;
}