/* Basic Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #2D2D2D;
    background-color: #F0F8FF;
    line-height: 1.6;
    padding-top: 70px; /* Added padding to account for the fixed header */
}

/* Container */
.container {
    width: 80%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.navbar {
    background-color: #E9F3FB;
    color: #333;
    padding: 10px 0;
    text-align: left;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo {
    height: 80px; /* Adjust the height as needed */
    margin-right: 20px;
}

/* Navigation Links */
.navbar nav ul {
    list-style: none;
    padding: 0;
}

.navbar nav ul li {
    display: inline-block;
    margin-right: 20px;
}

.navbar nav ul li:last-child {
    margin-right: 0;
}

.navbar nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.2s;
}

.navbar nav ul li a:hover {
    color: #005f8c;
}

/* Sections */
section {
    padding: 20px;
    margin: 20px 0;
}

/* Survey Section */
.survey-link {
    padding: 60px 0;
    background-color: #F3F9FD; /* Changed to white */
    text-align: center;
    border-radius: 10px;
    margin: 40px 0;
}

.survey-link h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.survey-link p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* Social Icons in Footer */
.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.social-icon {
    margin: 0 10px;
}

.social-icon img {
    width: 30px;
    height: 30px;
    transition: transform 0.2s;
}

.social-icon img:hover {
    transform: scale(1.2);
}

/* Footer */
.footer {
    background-color: #2C3E50;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    position: relative;
}
