@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
}


body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f9f9;
    color: #333;
}

nav {
    background-color: #004466;
    padding: 1em;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1em;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header {
    text-align: center;
    padding: 4em 2em;
    background-color: #0077aa;
    color: white;
}

.cta-button {
    display: inline-block;
    margin-top: 1em;
    padding: 0.75em 1.5em;
    background-color: #00b3b3;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

section {
    padding: .75em .75em;
    max-width: 900px;
    margin: auto;
}

h2 {
    color: #0077aa;
}

ul {
    padding-left: 1.2em;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

input,
textarea,
button {
    padding: 0.75em;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #0077aa;
    color: white;
    border: none;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 2em;
    background-color: #004466;
    color: white;
}

a {
    color: #0077aa;
    /* your teal brand color */
}

.social-links svg {
  width: 36px;
  height: 36px;
  transition: transform 0.25s ease, stroke 0.25s ease;
      text-align: center;
}

.social-links {
      text-align: center;
}

.social-links svg:hover {
  transform: scale(1.18);
  stroke: #22E6E6; /* brighter aqua glow */
}