body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

header {
    /* background-color: #007bff; */
    background-color: #423457;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}



.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 24%;
    background-image: url('hr.jpg'); /* Update with your image path */
    background-size: cover;
    background-position: center;
    filter: blur(3px);
}

.header-content {
    position: relative;
    z-index: 2; /* Ensures text appears above the blurred background */
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
}

main .container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    gap: 20px; /* Ensures spacing between columns */
}
  main .cta{
    margin:10px;
}#exploreButton{margin-top:80px;}
.column {
    flex: 1; /* Ensures each column takes equal width */
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px; /* Adds rounded corners to the columns */
}

.column h2 {
    color: #007bff;
    margin-top: 0;
}

.column ul {
    list-style-type: none; /* Removes default bullet points */
    padding: 0;
    margin-top: 10px;
}

.column ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}
/* 
footer {
    background-color: #343a40;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer p {
    margin: 0;
    font-size: 1em;
} */

footer {
    /* background-color: #333; */
    background-color: #564886;
    color: #fff;
    padding: 20px 0;
    font-size: 15px;
}

.footer-container {
    display: flex;
    justify-content: space-evenly;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}
.footer-disclaimer {
    color: #aaa; /* Faint gray color */
    font-size: 10px; /* Very small text */
    opacity: 0.5; /* Make the text even fainter */
    margin-top: 20px; /* Optional: adds space between this section and others above it */
    line-height: 1.2; /* Adjust line spacing for better readability */
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-section {
        margin-bottom: 20px;
    }
}