body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e1f6fc;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #2c3e50; /* Dark Blue for header */
    color: white;
}

section {
    display: flex;
    justify-content: space-around;
    margin: 40px;
}

.option {
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Added shadow for depth */
    transition: transform 0.2s; /* Animation for hover effect */
    width: 300px; /* Fixed width for uniformity */
}

.option:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

.option-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Rounded corners for images */
}

.option h2 {
    color: #333;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #45a049;
}

.container1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/* Logo container should be a flex column to stack text */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    margin-right: 15px;
    height: 50px;
}

.logo p {
    margin: 0;
    font-size: 1.5em;
    color: white;
    font-family: 'Dancing Script', cursive;
}

/* Container for the Work Finder text */
.logo-text {
    display: flex;
    flex-direction: column; /* Stack the texts vertically */
}

.logo-text p:first-child {
    margin-bottom: 5px; /* Adjust the spacing between Work Finder and subsidiary text */
    font-size: 1.5em;
    color: white;
}

.logo-text p:nth-child(2) {
    font-size: 0.9em;
    color: #ccc; /* Lighter color for the subsidiary text */
}

nav {
    margin-left: auto;
}

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

nav ul li {
    display: inline;
    margin-left: 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #f39c12;
}

.register-container {
    display: flex;
    justify-content: center; /* Center the register box */
    margin: 40px 0; /* Top and bottom margins for spacing */
}

.register-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px; /* Rounded corners for the box */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px; /* Limit width for the box */
    width: 100%; /* Full width for small screens */
}

h2 {
    text-align: center;
    color: #333;
}

h3 {
    text-align: center;
    color: #333;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="password"],
select {
    width: 100%; /* Full width for inputs */
    padding: 10px;
    margin-bottom: 15px; /* Space below inputs */
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    padding: 10px 20px; /* Padding for the button */
    background-color: #4CAF50; /* Green background color */
    color: white; /* Text color */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Change cursor on hover */
    font-size: 16px; /* Font size */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
    width: 100%; /* Full width for button */
}

button:hover {
    background-color: #45a049; /* Darker green on hover */
}

button:focus {
    outline: none; /* Remove outline on focus */
}

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 0;
    margin-top: 30px;
    text-align: center; /* Center text for small screens */
}

.footer-content {
    display: flex;
    justify-content: space-around; /* Space between sections evenly */
    padding: 0 10%; /* Padding to create space from edges */
}

.footer-section {
    flex: 1; /* Allow equal spacing */
    min-width: 200px; /* Minimum width for better layout */
    padding: 10px; /* Padding between footer sections */
    background-color: rgba(44, 62, 80, 0.9); /* Slightly transparent background for visibility */
}

.social-icons {
    display: flex;
    flex-direction: column; /* Stack "Follow Us On" and icons vertically */
    align-items: center; /* Center the heading */
    margin-top: 10px;
}

.icon-container {
    display: flex; /* Align icons in a row */
    justify-content: center; /* Center icons horizontally */
    margin-top: 5px; /* Space between heading and icons */
}

.social-icons a {
    color: #fff;
    margin: 0 15px; /* Spacing between icons */
    font-size: 30px; /* Enlarged icons */
    transition: transform 0.3s; /* Smooth transition for hover effect */
}

.social-icons a:hover {
    color: #f39c12; /* Color change on hover */
    transform: scale(1.2); /* Slightly enlarge icons on hover */
}
