:root {
    --primary-dark: #ffffff;
    --primary-light: #f0f4f8;
    --accent-blue: #00b4d8;
    --accent-yellow: #1e3a8a;
    --text-light: #2a4365;
    --secondary-blue: #48cae4;
    --deep-sea: #023e8a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
}

nav {
    position: fixed;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(234, 248, 247, 0.9);
    border-bottom: 1px solid rgba(0, 180, 216, 0.2);
    z-index: 1000;
}

.nav-links a {
    color: var(--deep-sea);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.main-section {
    padding: 10rem 2rem;
    background-color: var(--primary-light);
    text-align: center;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.main-section h2 {
    font-size: 2.5rem;
    color: #095760;
    margin-bottom: 1.5rem;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.main-section h3 {
    font-size: 1.4rem;
    color: #0e6a79;
    margin-top: 1.5rem;
}

.main-section p {
     font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.2rem;
    color: #44677f;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.main-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}


.main-section ul li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #45598e;
}

.main-section ul li a {
    color: var(--accent-blue);
    text-decoration: none;
}

.main-section ul li a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgb(233, 242, 246);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Footer Styles */
.footer {
    background-color: #f3fafb;
    color: #2a4d53;
    padding: 40px 20px;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.1);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about,
.footer-links,
.footer-contact {
    flex: 1;
    min-width: 250px;
    margin: 10px 20px;
}

.footer-about h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0056b3;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #0056b3;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #1b3136;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #007bff;
}

.footer-contact p {
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact a {
    color: #0056b3;
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding: 10px;
    background-color: #e9f5f7;
    margin-top: 20px;
    font-size: 14px;
    color: #4b4b4b;
}


/* Privacy and Terms Section */
.footer-policy {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
}

.footer-policy a {
    color: #0056b3;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-policy a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding: 10px;
    
    margin-top: 20px;
    font-size: 14px;
    color: #4b4b4b;
}

html {
    scroll-behavior: smooth;
}

.back-to-top {
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    z-index: 100; 
}

.back-to-top a {
    background-color: #1d7478;
    color: #ffffff;
    font-size: 14px;
    width: 40px; 
    height: 40px; 
    border-radius: 50%;
    text-decoration: none;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); 
}

.back-to-top a:hover {
    background-color: #144e56;
    transform: scale(1.1);
}

.back-to-top i {
    font-size: 18px; 
}




/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        margin: 20px 0;
    }

    .back-to-top {
        text-align: center;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        cursor: pointer;
    }

    .nav-links a {
        display: block;
        margin: 10px 0;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        margin: 20px 0;
    }

    .back-to-top {
        text-align: center;
    }

    .main-section {
        padding: 5rem 2rem;
    }

    .main-section h2 {
        font-size: 2rem;
    }

    .main-section h3 {
        font-size: 1.5rem;
    }

    .main-section ul li {
        font-size: 1rem;
    }
}


ul {
    list-style-type: disc;
    text-align: center;
    list-style-position: inside; /* Aligns bullets with the text */
    padding: 0;
    margin: 0 auto; /* Centers the list container */
    display: inline-block; /* Ensures the list respects the centering */
}
ul li {
    margin: 0; /* Removes extra spacing around list items */
    padding: 0; /* Removes extra padding */
}
:root {
    --primary-dark: #ffffff;
    --primary-light: #f0f4f8;
    --accent-blue: #00b4d8;
    --accent-yellow: #1e3a8a;
    --text-light: #2a4365;
    --secondary-blue: #48cae4;
    --deep-sea: #023e8a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
}

nav {
    position: fixed;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(234, 248, 247, 0.9);
    border-bottom: 1px solid rgba(0, 180, 216, 0.2);
    z-index: 1000;
}

.nav-links a {
    color: var(--deep-sea);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.main-section {
    padding: 10rem 2rem;
    background-color: var(--primary-light);
    text-align: center;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.main-section h2 {
    font-size: 2.5rem;
    color: #095760;
    margin-bottom: 1.5rem;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.main-section h3 {
    font-size: 1.4rem;
    color: #0e6a79;
    margin-top: 1.5rem;
}

.main-section p {
     font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.2rem;
    color: #44677f;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.main-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}


.main-section ul li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #45598e;
}

.main-section ul li a {
    color: var(--accent-blue);
    text-decoration: none;
}

.main-section ul li a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgb(233, 242, 246);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Footer Styles */
.footer {
    background-color: #f3fafb;
    color: #2a4d53;
    padding: 40px 20px;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.1);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about,
.footer-links,
.footer-contact {
    flex: 1;
    min-width: 250px;
    margin: 10px 20px;
}

.footer-about h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0056b3;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #0056b3;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #1b3136;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #007bff;
}

.footer-contact p {
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact a {
    color: #0056b3;
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding: 10px;
    background-color: #e9f5f7;
    margin-top: 20px;
    font-size: 14px;
    color: #4b4b4b;
}


/* Privacy and Terms Section */
.footer-policy {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
}

.footer-policy a {
    color: #0056b3;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-policy a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding: 10px;
    
    margin-top: 20px;
    font-size: 14px;
    color: #4b4b4b;
}

html {
    scroll-behavior: smooth;
}

.back-to-top {
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    z-index: 100; 
}

.back-to-top a {
    background-color: #1d7478;
    color: #ffffff;
    font-size: 14px;
    width: 40px; 
    height: 40px; 
    border-radius: 50%;
    text-decoration: none;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); 
}

.back-to-top a:hover {
    background-color: #144e56;
    transform: scale(1.1);
}

.back-to-top i {
    font-size: 18px; 
}
/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        margin: 20px 0;
    }

    .back-to-top {
        text-align: center;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        cursor: pointer;
    }

    .nav-links a {
        display: block;
        margin: 10px 0;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        margin: 20px 0;
    }

    .back-to-top {
        text-align: center;
    }

    .main-section {
        padding: 5rem 2rem;
    }

    .main-section h2 {
        font-size: 2rem;
    }

    .main-section h3 {
        font-size: 1.5rem;
    }

    .main-section ul li {
        font-size: 1rem;
    }
}


ul {
    list-style-type: disc;
    text-align: center;
    list-style-position: inside; /* Aligns bullets with the text */
    padding: 0;
    margin: 0 auto; /* Centers the list container */
    display: inline-block; /* Ensures the list respects the centering */
}
ul li {
    margin: 0; /* Removes extra spacing around list items */
    padding: 0; /* Removes extra padding */
}