@import url('https://fonts.googleapis.com/css2?family=BBH+Hegarty&family=Outfit:wght@100..900&display=swap');

body {
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-family: "Outfit", sans-serif;
}

a {
    text-decoration: none;
    color: #686868;
}

ul {
    list-style-type: none;
    padding: 0;
}

h2 {
    font-family: "BBH Hegarty", sans-serif;
    font-weight: 400;
    font-size: 18px;
}


/* Header styles */

header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 15px;
    background-color: beige;
}

.navigationMenu ul {
    display: flex;
    gap: 20px;
    font-size: 13px;
}

.navigationMenu a:hover {
    text-decoration: underline;
}

.logo {
    font-family: "BBH Hegarty", sans-serif;
    font-weight: 400;
    font-size: 18px;
}



/* Main content styles */

.mainArea {
    margin-bottom: 120px;
}

.topPara {
    padding: 10px 15px;
    min-height: 150px;
    background: url(assets/home.jpeg);
    background-repeat: no-repeat;
    background-position: right; 
    background-size: cover;

    background-color: #e1e1e1;
}

.para-2 {
    margin: 20px 0;
    text-align: center;
}

.centered {
    padding: 0 20px;
}

.ctaButton {
    display: inline-block;
    padding: 10px 20px;
    background-color: #686868;
    color: white;
    border-radius: 5px;
    margin: 10px 0;
}

.ctaButton:hover {
    background-color: #505050;
}

.para-lottie {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.para-3 ul {
    display: flex;
    justify-content: space-around;
}

.para-3 ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: solid 1px #ccc;
    background-color: #ccc;
    border-radius: 10px;
    padding: 10px;

    font-size: 10px;
}

.centered ul li img {
    max-width: 25px;
}




/* Join Us section styles */

.joinForm {
    display: flex;
    flex-direction: column;
}

.joinForm label, .joinForm input, .joinForm textarea {
    margin: 2px 0;
    padding: 5px;
    font-size: 11px;
}

.joinForm label {
    font-size: 13px;
    font-weight: bold;
}

h4 {
    text-decoration: underline;
}

.submitButton {
    margin-top: 10px;
    padding: 8px;
    background-color: #686868;
    color: white;
    border-radius: 5px;
    font-size: 13px;

    font-family: "Outfit", sans-serif;
}

.submitButton:hover {
    background-color: #505050;
    cursor: pointer;
}



/* Contact Us section styles */

.contactUs {
    margin: 20px 15px;
}

.contactUs h2{
    text-align: center;
    text-decoration: underline;
}

.contactUs ul a {
    color: blue;
}

.contactUs ul a:hover {
    text-decoration: underline;
}




/* About Us section styles */
.aboutUs {
    margin: 20px 15px;
}

.aboutUs h2{
    text-align: center;
    text-decoration: underline;
}   


/* Terms and Conditions section styles */

.terms {
    margin: 20px 15px;
}

.terms h2{
    text-align: center;
    text-decoration: underline;
}



/* Privacy Policy section styles */

.privacy {
    margin: 20px 15px;
}

.privacy h2{
    text-align: center;
    text-decoration: underline;
}




/* Footer styles */

footer {
    font-size: 13px;

    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fff;
}

.bottomNav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
}

.bottomNav a:hover {
    text-decoration: underline;
}