* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', "EB Garamond", 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #000;
  overflow-x: hidden;
}
.eb-garamond-400 {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.eb-garamond-500 {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
.eb-garamond-600 {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
.eb-garamond-700 {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}
.eb-garamond-800 {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #0056a3;
  text-decoration: none;
}

.logo-img {
  height: 70px;
  width: auto;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  letter-spacing: -0.1px;
  line-height: 29px;
}

.nav a:hover {
  color: #095CA9;
}

.nav a.active {
  color: #095CA9;
}

.btn-primary {
  background: #095CA9;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #004080;
}

.btn-primary.active {
  background: #004080;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #000;
}

/* HERO */
.hero {
  height: 80vh;
  min-height: 500px;
  background-image: url('../images/hero_image.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-content {
  width: 100%;
  padding-bottom: 60px;
  text-align: center;
}

.hero h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  max-width: 1000px;
  margin: 0 auto;
  letter-spacing: -0.2px;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  position: relative;
  padding-bottom: 0px;
  letter-spacing: -0.12px;
  line-height: 34.8px;
  border-bottom: 1px solid #1E1E1E;
  margin-bottom: 30px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30%;
  height: 4px;
  background: #0056a3;
}

.section-title-underline {
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #1E1E1E;
  display: inline-block;
}
.section-title-white {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
}

/* ABOUT SECTION */
.about-section {
  background: #EDEDED;
}

.about-content {
  margin-bottom: 50px;
}

.about-intro {
  font-size: 18px;
  margin-bottom: 20px;
  color: #000;
  text-align: justify;
  line-height: 30px;
}

.features-section {
  margin-top: 50px;
}

.features-title {
  font-size: 20px;
  margin-bottom: 30px;
  color: #000;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.features-list {
  list-style: none;
}

.features-list li {
  font-size: 16px;
  line-height: 33.6px;
  margin-bottom: 20px;
  color: #000;
  padding-left: 30px;
  position: relative;
}

.features-list li::before {
  content: url('../images/bird_icon.png');
  position: absolute;
  left: 0;
  width: 5px;
  height: 5px;
  display: inline-block;
  line-height: 1;
  top: 7px;
}

/* COVERAGE SECTION */
.coverage-section {
  background: #095CA9;
  color: #fff;
  padding: 60px 0;
}
.section-title-small {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  text-align: left;
  line-height: 33.6px;
}

.coverage-intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
}

.countries-column p {
  font-size: 17px;
  line-height: 33.6px;
  color: #fff;
  text-align: left;
  position: relative;
  padding-bottom: 8px;
}

.countries-grid {
  display: flex;
  flex-direction: row;
  gap: 60px;
  margin-top: 10px;
  align-items: flex-start;
}

.countries-column {
  flex: 1;
}

.countries-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

/* SERVICES SECTION */
.services-section {
  background: #f8f9fa;
}

.services-intro {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #000;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px 50px;
}

.service-item:last-child {
  margin-bottom: 0;
}

.service-item-reverse {
  direction: rtl;
}

.service-item-reverse > * {
  direction: ltr;
}

.service-content {
  padding: 20px 20px 20px 0;
}

.service-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.service-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #000;
}

.service-list {
  list-style: none;
  padding-left: 20px;
}

.service-list li {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 2px;
  color: #000;
  padding-left: 20px;
  position: relative;
  letter-spacing: -0.12px;
}

.service-list li::before {
  content: '.';
  position: absolute;
  left: 0;
  color: #000;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  top: -10px;
}

.service-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTACT SECTION */
.contact-section {
  background: url('../images/footer_bg.png') no-repeat center center;
  background-color: #095CA9EE;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 .contact-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
.contact-info h3 .contact-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.contact-message {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
}

.contact-email {
  margin-bottom: 30px;
}

.contact-email a {
  color: #fff;
  font-size: 18px;
  text-decoration: underline;
  transition: opacity 0.3s ease;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-style: normal;
}

.contact-email a:hover {
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-style: normal;
  flex-direction: column;
  margin-bottom: 20px;
}

.social-link {
  color: #fff;
  font-size: 18px;
  text-decoration: underline;
  transition: opacity 0.3s ease;    
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-style: normal;
}

.social-link:hover {
  opacity: 0.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-bottom: 25px;
  position: relative;
  min-height: auto;
}

.contact-form-group label {
  font-size: 16px;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  color: #fff;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  font-family: "EB Garamond", serif;
}

/* Phone input specific padding to accommodate flag */
.contact-form input[type="tel"] {
  padding-left: 60px;
}

/* Phone input specific padding to accommodate flag */
.contact-form input[type="tel"] {
  padding-left: 60px;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  position: relative;
}

.contact-form select.s-hidden {
  display: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #666;
  font-family: "EB Garamond", serif;
}

.contact-form select:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: "EB Garamond", serif;
}

.btn-submit {
  background: #095CA9;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
  width: 100%;
  font-family: "EB Garamond", serif;
}

.btn-submit:hover {
  background: #095CA9;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-submit.btn-loading {
  position: relative;
  color: transparent;
}

.btn-submit.btn-loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
  to { transform: rotate(360deg); }
}

/* Success and Error Alerts */
.success-alert,
.error-alert {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 4px;
  font-family: "EB Garamond", serif;
  font-size: 16px;
  text-align: center;
}

.success-alert {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.error-alert {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.success-alert.hidden,
.error-alert.hidden {
  display: none;
}

.success-alert.show,
.error-alert.show {
  display: block;
}

/* Character Counter */
.char-counter {
  text-align: right;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
  font-family: "EB Garamond", serif;
}

.char-counter.warning {
  color: #ffc107;
}

.char-counter.danger {
  color: #dc3545;
}

/* Error Message */
.error-msg {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
  font-family: "EB Garamond", serif;
}

.error-msg.hide {
  display: none;
}

/* Required field indicator */
.text-danger {
  color: #dc3545;
  font-size: 14px;
}

/* Parsley Error Styling */
.parsley-errors-list {
  margin: 5px 0 0 0;
  padding: 0;
  list-style: none;
  order: 3; /* Ensure errors appear after input/select */
}

.parsley-errors-list li {
  color: #dc3545;
  font-size: 14px;
  font-family: "EB Garamond", serif;
}

.parsley-error {
  border-color: #dc3545 !important;
}

/* Ensure Parsley errors appear below elements, not above */
.contact-form-group .parsley-errors-list {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 5px;
  margin-bottom: 0;
  order: 999; /* Always appear last in flex container */
  z-index: 10;
}

/* For select elements, ensure error appears below */
.contact-form-group select ~ .parsley-errors-list,
.contact-form-group .select ~ .parsley-errors-list {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 5px;
  order: 999;
}

/* intl-tel-input styling */
.iti {
  width: 100%;
  position: relative;
  display: block;
  margin-bottom: 0;
  z-index: 1;
}

.iti__flag-container {
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  pointer-events: auto;
  cursor: pointer;
}

.iti__selected-flag {
  pointer-events: auto;
  cursor: pointer;
  z-index: 3;
}

.iti__country-list {
  z-index: 1000;
  position: absolute;
}

/* Ensure phone input wrapper doesn't get pushed down by errors */
.contact-form-group .iti {
  margin-bottom: 0;
  flex-shrink: 0;
}

.contact-form-group .iti ~ .parsley-errors-list,
.contact-form-group .iti ~ #error-msg-phone {
  margin-top: 5px;
  position: relative;
  order: 999;
  flex-shrink: 0;
}

/* Ensure error message for phone doesn't affect flag positioning */
#error-msg-phone {
  margin-top: 5px;
  order: 999;
  flex-shrink: 0;
}

/* FOOTER */
.footer {
  background: #fff;
  color: #000;
  padding: 40px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  height: 70px;
  width: auto;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.footer-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid #000;
  width: 70%;
}

.footer-nav a {
  color: #095CA9;
  text-decoration: none;
  font-size: 22px;
  transition: color 0.3s ease;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-style: normal;
  padding-top: 20px;
}

.footer-nav a:hover {
  color: #095CA9;
}

.footer-copyright {
  font-size: 16px;
  color: #095CA9;
  text-align: center;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-style: normal;
  padding-top: 20px;
  padding-bottom: 20px;
}

.pt-3 {
  padding-top: 90px;
}

/* RESPONSIVE MEDIA QUERIES */

/* Tablet */
@media (max-width: 1024px) {
  .hero {
    height: 100vh;
    min-height: 600px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .section-title,
  .section-title-white {
    font-size: 26px;
  }

  .service-item {
    gap: 40px;
    padding: 10px 0px;
  }

  .service-title {
    font-size: 28px;
  }

  .contact-grid {
    gap: 40px;
  }
  .pt-3 {
    padding-top: 0px;
  }
  .section-title::after {
    width: 50%;
  }
}
@media (max-width: 992px) {
    
    .section-title::after {
      width: 50%;
    }
}
/* Mobile Large */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 90px;
  }
  .logo-img {
    height: 50px;
  }
  .footer-logo-img {
    height: 50px;
  }
  .footer-nav a {
    font-size: 18px;
    padding-top: 10px;
  }
  .section-title::after {
    width: 65%;
  }

  .header-inner {
    height: 70px;
    padding: 0 15px;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    gap: 0;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-left: 0;
  }

  .nav a:last-child {
    border-bottom: none;
    padding-left: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    background-position: center top;
  }

  .hero-overlay {
    align-items: center;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.6);
  }

  .hero-content {
    padding: 20px 0;
    width: 100%;
  }

  .hero h1 {
    font-size: 22px;
    line-height: 1.35;
    padding: 0 20px;
    letter-spacing: 0.5px;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .section {
    padding: 60px 0;
  }

  .section-title,
  .section-title-white {
    font-size: 32px;
  }

  .about-intro,
  .services-intro {
    font-size: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .features-column {
    margin-bottom: 0;
  }
  
  .features-list li {
    margin-bottom: 15px;
  }

  .countries-grid {
    flex-direction: column;
    gap: 40px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
    padding: 10px 0px;
  }
  .service-item-reverse {
    direction: ltr;
  }

  .service-image {
    min-height: 300px;
    order: -1;
  }

  .service-title {
    font-size: 24px;
  }

  .service-description {
    font-size: 16px;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-title {
    font-size: 36px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .pt-3 {
    padding-top: 0px;
  }
}
@media (max-width: 600px) {
    .section-title::after {
      width: 50%;
    }
}
/* Mobile Small */
@media (max-width: 480px) {
  .section-title::after {
    width: 60%;
  }
  
  .logo-text {
    font-size: 20px;
  }

  .logo-img {
    height: 35px;
  }

  .footer-logo-img {
    height: 35px;
  }

  .hero {
    height: 50vh;
    min-height: 350px;
    max-height: 500px;
    background-position: center top;
  }

  .hero-overlay {
    align-items: center;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.65);
  }

  .hero-content {
    padding: 15px 0;
    width: 100%;
  }

  .hero h1 {
    font-size: 18px;
    line-height: 1.4;
    padding: 0 15px;
    letter-spacing: 0.5px;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .section {
    padding: 40px 0;
  }

  .section-title,
  .section-title-white {
    font-size: 26px;
  }

  .about-intro,
  .services-intro,
  .contact-message {
    font-size: 15px;
  }

  .features-title {
    font-size: 22px;
  }

  .features-list li,
  .service-list li {
    font-size: 15px;
  }

  .service-title {
    font-size: 22px;
  }

  .service-image {
    min-height: 250px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 12px;
    font-size: 15px;
  }
  
  .contact-form select {
    padding-right: 35px;
    background-position: right 12px center;
  }

  .btn-submit {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
  }

  .footer-content {
    gap: 20px;
  }

  .footer-logo-text {
    font-size: 18px;
  }

  .footer-nav a {
    font-size: 14px;
  }

  .footer-copyright {
    font-size: 12px;
  }
  .pt-3 {
    padding-top: 0px;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .section-title::after {
    width: 70%;
  }
  
  .container {
    padding: 0 15px;
  }

  .hero {
    height: 45vh;
    min-height: 300px;
    max-height: 450px;
    background-position: center top;
  }

  .hero-overlay {
    align-items: center;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.7);
  }

  .hero-content {
    padding: 10px 0;
    width: 100%;
  }

  .hero h1 {
    font-size: 16px;
    line-height: 1.45;
    padding: 0 15px;
    letter-spacing: 0.5px;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .section-title,
  .section-title-white {
    font-size: 24px;
  }

  .contact-title {
    font-size: 28px;
  }
  .pt-3 {
    padding-top: 0px;
  }
}

/* Print Styles */
@media print {
  .header,
  .menu-toggle,
  .contact-section,
  .footer {
    display: none;
  }

  .section {
    page-break-inside: avoid;
  }
}

/* Custom Select Styles */
.s-hidden {
    visibility: hidden;
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    border: none;
}

.contact-form .select {
    cursor: pointer;
    display: block;
    position: relative;
    width: 100%;
    font-family: "EB Garamond", serif;
    color: #000;
    margin-bottom: 0;
}

/* Ensure Parsley errors appear after custom select wrapper */
.contact-form .select ~ .parsley-errors-list {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    order: 999;
    z-index: 10;
}

.contact-form .styledSelect {
    position: relative;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 14px 40px 14px 14px;
    border-radius: 4px;
    font-size: 16px;
    font-family: "EB Garamond", serif;
    color: #000;
    min-height: 20px;
    line-height: 1.5;
    border: none;
    width: 100%;
    box-sizing: border-box;
}

.contact-form .styledSelect::after {
    content: "";
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-top-color: #000;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    pointer-events: none;
}

.contact-form .styledSelect.active {
    background-color: rgba(255, 255, 255, 0.95);
}

.contact-form .styledSelect.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.contact-form .options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    margin: 4px 0 0 0;
    padding: 0;
    list-style: none;
    border: none;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 300px;
    overflow-y: auto;
    font-family: "EB Garamond", serif;
}

.contact-form .options li {
    padding: 6px 14px;
    margin: 0;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s ease;
}

.contact-form .options li:first-child {
    border-radius: 4px 4px 0 0;
}

.contact-form .options li:last-child {
    border-bottom: none;
    border-radius: 0 0 4px 4px;
}

.contact-form .options li:hover {
    color: #095CA9;
}

.contact-form .options li:active {
    background-color: rgba(9, 92, 169, 0.2);
}
