/* Reset and base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Typography */
h1, h2, h3 {
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #4a90e2;
    color: #fff;
}

.btn-primary:hover {
    background-color: #3a7bc8;
}

/* Header and Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding-top: 10px;
    padding-bottom: 10px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4a90e2;
}

.logo a {
    color: #4a90e2; /* Use your brand color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #3a7bc8; /* Slightly darker shade for hover effect */
}


.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
}

.mobile-menu-toggle {
    display: none;
}

/* Hero section */
.hero {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 50%;
}

.small-line-height {
    line-height: 1.2;
}

.hero-image {
    flex: 1;
    max-width: 50%;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Features section */
.features {
    padding: 80px 0;
    background-color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
}

.feature img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

/* Why It Matters section */
.why-it-matters {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.why-it-matters .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.why-content {
    flex: 1;
    max-width: 50%;
}

.why-image {
    flex: 1;
    max-width: 50%;
    text-align: right;
}

.why-image img {
    max-width: 100%;
    height: auto;
}

/* Focus section */
.focus {
    padding: 80px 0;
    background-color: #fff;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* Contact section */
.contact {
    background-color: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

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

.disclaimer {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.copyright {
    font-size: 0.8rem;
    text-align: center;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: sticky;
    top: 10px;
    right: 10px;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#policy-content {
    margin-top: 20px;
}

#policy-content h2,
#policy-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

#policy-content p,
#policy-content ul {
    margin-bottom: 15px;
}

#policy-content ul {
    padding-left: 20px;
}
/* end Modal */

/* Responsive styles */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 5px 0;
    }

    .hero .container,
    .why-it-matters .container {
        flex-direction: column;
    }

    .hero-content,
    .hero-image,
    .why-content,
    .why-image {
        max-width: 100%;
    }

    .hero-image,
    .why-image {
        margin-top: 40px;
    }
}

/* Additional styles for the privacy policy page */
.policy-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.policy-page h1 {
    text-align: center;
    color: #4a90e2;
    font-size: 2.5rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #4a90e2;
}

.policy-page h3 {
    color: #2c3e50;
    margin-top: 30px;
    font-size: 1.5rem;
}

.policy-page p,
.policy-page ul {
    margin-bottom: 15px;
}

.policy-page ul {
    padding-left: 20px;
}

@media (max-width: 600px) {
    .policy-page {
        padding: 15px;
    }

    .policy-page h1 {
        font-size: 2rem;
    }

    .policy-page h3 {
        font-size: 1.3rem;
    }
}


/* -------------------------------------------- */