/* Footer styling */
footer {
    position: relative; /* Position relative to content */
    z-index: 3; /* Ensure footer appears above background */
    width: 100%;
    padding: 20px;
    background-color: #333; /* Dark footer background */
    color: white;
    text-align: center;
    margin-top: -50px; /* Adjust this value to overlap the background slightly */
}

.container{
    background-color: white;
    padding-top: 50px;
    padding-bottom: 30px;
}

.support{
    font-weight: bold;
    text-align: center;
    padding-bottom: 20px;
}

.support-contents{
    text-align: center;
    gap: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px; /* Space between links */
    margin: 0;
    padding: 0;
    justify-content: center; /* Center the links horizontally */
    width: 100%; /* Ensure the container takes up the full width of the parent */
}

/* Individual link styles */
.nav-links li a {
    text-decoration: none;
    color: #121212; /* Default text color */
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #121212BF; /* Highlight color */
    text-decoration: underline; /* Optional underline effect on hover */
}

.newsletter{
    padding-top: 50px;
    padding-left: 35px;
}

.email {
    width: 100%; /* Makes the input take the full width of its container */
    padding: 10px; /* Adds some space inside the input */
    font-size: 16px; /* Adjust font size */
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 4px; /* Slightly rounded corners */
    background-color: #f9f9f9; /* Light background color */
    color: #333; /* Text color */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition effect for focus */
    width: 350px; /* Fixed width of 300 pixels */

}

/* Change border color when input is focused */
.email:focus {
    outline: none; /* Remove default outline */
    border-color: #121212BF; /* Green border when focused */
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.3); /* Subtle green shadow */
}

/* Optional: Add placeholder styling */
.email::placeholder {
    color: #888; /* Placeholder text color */
    font-family: 'Alegreya', Serif; /* Apply Alegreya font */
}

.submit-btn {
    padding: 10px;
    background-color: #121212BF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: -1px; /* Slight overlap with the input */
}

.submit-btn:hover {
    background-color: #888;
}

.description{
    color: grey;
    padding-left: 38px;
}

.big{
    padding-left: 38px; 
}