/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set up for sticky footer */
html, body {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Set up flex container for sticky footer */
    display: flex;
    flex-direction: column;
}

/* Banner styles */
.banner {
    position: relative;
    text-align: center;
    margin-bottom: 1rem;
    background-color: #2c3e50; /* Dark blue-gray background */
    padding: 2rem 2rem; /* Add padding to create height */
    border-radius: 8px; /* Optional: rounded corners */
}

.banner-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: none; /* Hide the image for now */
}

.banner h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 2.5rem;
    /* Remove absolute positioning since we don't have an image */
    position: static;
    transform: none;
    margin: 0;
}

/* Main content styles */
main {
    padding: 2rem 0;
    /* Allow main content to grow and push footer down */
    flex: 1 0 auto;
}

.intro {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.content {
    margin-left: 2rem;
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #003366;
    text-decoration: underline;
}

/* Footer styles */
footer {
    /* Prevent footer from growing */
    flex-shrink: 0;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #666;
    /* Ensure footer stays at bottom of viewport */
    width: 100%;
}

a[target="_blank"]::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6' stroke='currentColor' fill='none' stroke-width='2'/%3E%3Cpath d='M15 3h6v6' stroke='currentColor' fill='none' stroke-width='2'/%3E%3Cpath d='M10 14L21 3' stroke='currentColor' fill='none' stroke-width='2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
  }

  .form-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* center horizontally */
    justify-content: center; /* optional, centers vertically if needed */
    width: 100%;
}

#contact-form {
    display: flex;
    flex-direction: column;
    width: 100%; /* or fixed width like 400px */
    max-width: 400px;
}

#contact-form input,
#contact-form textarea,
#contact-form button {
    padding: 4px;
    margin-bottom: 10px; /* optional spacing */
    box-sizing: border-box;
}

#contact-form textarea {
    resize: vertical; /* allow vertical resizing only */
    min-height: 100px; /* optional for usability */
}

#contact-form button {
    cursor: pointer; /* improves usability */
}

.resp-content {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.resp-content li {
    padding-left: 0;
  list-style-type: none;
}


