body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F2F2F2;
    overflow-x: hidden;
}

.navbar {
    background-color: #f8f9fa;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e7e7e7;
}

.navbar-brand {
    cursor: pointer;
}

.navbar-brand img {
    height: 40px;
}

.cta-button {
    background-color: #1A73E8;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    background-color: #1558B2;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#privacy-policy,
#terms-conditions {
    background-color: #ffffff;
    padding: 50px 20px;
}

#privacy-policy .section-content p,
#privacy-policy .section-content h3,
#terms-conditions .section-content p,
#terms-conditions .section-content h3 {
    margin-bottom: 20px;
    line-height: 1.6;
}