* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Livvic', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #014E56;
}

/* Header Styles */
.header {
    background-color: #014E56;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #F67E7E;
}

.contact-btn {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #ffffff;
    color: #014E56;
}


/* Contact Section */
.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.contact-left {
  width: 50%;
}

.contact-left h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.ask {
  color: #F67E7E;
  font-size: 24px;
  margin-bottom: 24px;
}

.contact-topics {
  list-style: none;
  padding: 0;
}

.contact-topics li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
}

.contact-topics .icon {
  font-size: 24px;
  margin-right: 16px;
}

.contact-form {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form input,
.contact-form textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 8px 0;
  color: white;
  font-size: 16px;
}

.contact-form textarea {
  resize: none;
  height: 100px;
}

.contact-form button {
  align-self: flex-start;
  background-color: white;
  color: #014E56;
  padding: 8px 24px;
  border: none;
  border-radius: 24px;
  font-weight: bold;
  cursor: pointer;
}

/* Footer */
.footer {
    background-color: #002529;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: start;
}

.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #F67E7E;
}

.footer-links {
    display: flex;
    gap: 0.5rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F67E7E;
}

.footer-contact p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #F67E7E;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #79C2D0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #014E56;
    opacity: 0.8;
}
