body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #008080;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}

header h1 {
    margin: 0;
}

header h1 a {
    text-decoration: none;
    color: #fff;
}

/* LOGO */
.logo {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.logo h1 {
    margin: 0;
    font-size: 2.3rem;
    color: white;
    text-transform: none;
    font-family: "Rowdies", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/* HEADER NAV */
nav {
    z-index: 999;
    display: flex;
    align-items: center;
    flex-grow: 2;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: #007373;
    margin: 0;
}

nav ul li {
    margin: 0 1rem;
    position: relative;
}

nav ul li a {
    color: rgb(241, 232, 232);
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    background-color: #005959;
    color: white;
}

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #4f8c8c;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/*HEADER RIGHT*/
.header-right {
    display: flex;
    align-items: center;
}

/* SEARCH BAR */
.search-container {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 25px;
    padding: 0 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#search-icon img {
    width: 20px;
    height: auto;
    vertical-align: middle;
}

.search-container input {
    border: none;
    font-family: "Lato", sans-serif;
    outline: none;
    padding: 10px;
    border-radius: 25px;
    width: 200px;
}

.search-container #search-icon {
    cursor: pointer;
    font-size: 1.2rem;
    color: #666;
    margin-left: 10px;
}

.suggestions {
    display: none;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    top: 40px;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.suggestions a {
    display: block;
    padding: 0.5rem;
    text-decoration: none;
    color: #333;
}

.suggestions a:hover {
    background-color: #f1f1f1;
}

.login-btn {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    margin-left: 10px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: rgb(21, 21, 21);
}


.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    background-color: lightgoldenrodyellow;
    border-radius: 8px;
    margin: 50px auto;
    max-width: 1000px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-message {
    text-align: center;
    margin-bottom: 30px;
}

.contact-message h1 {
    color: #0066cc;
    margin-bottom: 10px;
}

.contact-message p {
    font-size: 18px;
    line-height: 1.6;
}

.contact-info, .contact-form {
    flex: 1;
    width: 100%;
    margin: 20px 0;
}

.contact-info h2, .contact-form h2 {
    color: #0066cc;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 18px;
}

.contact-info a {
    color: #0066cc;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin: 10px 0 5px;
    font-weight: bold;
}

.contact-form input, .contact-form textarea, .contact-form button {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form textarea {
    resize: vertical;
    height: 150px;
}

.contact-form button {
    background-color: #0066cc;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.contact-form button:hover {
    background-color: #005bb5;
}

#form-message {
    color: green;
    font-weight: bold;
    text-align: center;
}

.feedback-container {
    background-color: lightgoldenrodyellow;
    padding: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    /* Reduced margin to make room for footer */
    border-radius: 35px;
    border: 1px solid black;
    /* Added black border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1000px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-left: auto;
    margin-right: auto;
    flex: 1 0 auto;
    /* Allow the container to grow and shrink */
}

.feedbacck-container:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
}

h1,
h2 {
    text-align: center;
    color: #333;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

h2 {
    font-size: 22px;
    margin-bottom: 30px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

input[type="text"],
select,
textarea {
    width: 96%;
    /* Adjusted for responsiveness */
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #555;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
select:focus,
textarea:focus {
    border-color: #007bff;
}

input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.checkbox-group label,
.radio-group label {
    margin-right: 20px;
    font-size: 16px;
    color: #555;
}

table {
    width: 96%;
    margin-bottom: 30px;
    border-collapse: collapse;
}

th,
td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 16px;
    color: #555;
}

th {
    background-color: lightgray;
}


/* HEADER */
header {
    background-color: #008080;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}

header h1 {
    margin: 0;
}

header h1 a {
    text-decoration: none;
    color: #fff;
}


/* LOGO */
.logo {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.logo h1 {
    margin: 0;
    font-size: 2.3rem;
    color: white;
    text-transform: none;
    font-family: "Rowdies", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/*HEADER*/
header {
    background-color: cadetblue;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 a {
    text-decoration: none;
    color: white;
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 1rem;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #4f8c8c;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #4f8c8c;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* footer */
body {
    margin: 0;
    padding: 0;
    background: #f5f5f5;
}

.footer {
    background: #002525;  /*linear-gradient(45deg, #34495e, #2c3e50);*/
    font-family: 'Arial', sans-serif;           /*'Roboto', sans-serif;*/
    color: white;
    padding: 40px 0;
    position: relative;
    text-align: center;
    overflow: hidden;

    bottom: 0;
    width: 100%;
}

.footer .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section {
    margin: 20px;
    flex: 1;
    min-width: 250px;
    /*position: relative;
    overflow: hidden;*/
}

.footer-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1abc9c;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.footer-section h2::after {
    content: '';
    width: 50px;
    height: 2px;
    background: #1abc9c;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.footer-section p, .footer-section ul, .footer-section li, .footer-section a {
    font-size: 16px;
    line-height: 1.8;
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #1abc9c;
}

.footer-section .social-links a {
    display: inline-block;
    margin: 0 10px;
    font-size: 24px;
    color: #bdc3c7;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-section .social-links a:hover {
    color: #1abc9c;
    transform: scale(1.2);
}

.footer-section:hover h2 {
    color: #e74c3c;
}

.footer-section:hover h2::after {
    width: 100%;
}

.footer-section:hover p, .footer-section:hover ul li a {
    color: #ecf0f1;
}

.footer-bottom {
    text-align: center;
    padding: 10px 0;
    background: #011f1f;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #bdc3c7;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin: 10px 0;
    }
}