body, html {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', Arial, sans-serif;
}

/* Navbar */
.navbar {
    background-color: #000235; /* Dark blue background */
    padding: 20px 0;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: add shadow for depth */
}

.navbar .navbar-container {    
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Padding for responsiveness */
}

.logo a {
    font-size: 24px;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    font-size: 18px;
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-links a:hover {
    background-color: #00aaff; /* Light blue background on hover */
    color: white;
    border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 10px 0;
    }
}
.contact-section {
    background-color: #000235; /* Dark blue background */
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.contact-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.contact-content {
    max-width: 600px;
    margin-bottom: 40px;
}

.contact-content h2 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 10px;
    color: #b0b0b0; /* Light gray color */
}

.contact-content h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-form {
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 100%;
    max-width: 600px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.contact-form .btn-primary {
    background-color: #000235;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .contact-section .container {
        width: 100%;
        padding: 0 10px;
    }

    .contact-form {
        padding: 15px;
    }
}
/* Footer Styles */
.footer {
    background-color: #000235;
    color: white;
    padding: 40px 20px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #00aaff;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: white;
    color: #000235;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.social-icon:hover {
    background-color: #00aaff;
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #40407a;
}

.footer-bottom p {
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 30px;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Get Started Section */
.get-started {
    background-color: #f2f2f2; /* Light grey background for contrast */
    color: #000235; /* Dark blue text color for readability */
    padding: 60px 20px;
    text-align: center;
}

.get-started .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.get-started h2 {
    font-size: 28px;
    color: #000235; /* Dark blue to match the theme */
    margin-bottom: 20px;
}

.get-started p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333; /* Darker text for better readability */
}

.get-started .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.get-started .btn {
    background-color: #00aaff; /* Light blue to stand out in the light grey section */
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: auto; /* Adjust width for content */
    transition: background-color 0.3s, color 0.3s;
}

.get-started .btn:hover {
    background-color: #000235; /* Dark blue on hover */
    color: white;
}

/* Responsive adjustments for the Get Started section */
@media (max-width: 768px) {
    .get-started .cta-buttons {
        flex-direction: column;
    }

    .get-started .btn {
        width: 100%; /* Full width buttons on smaller screens */
        margin-bottom: 10px; /* Add margin for stacked buttons */
    }
}
