@import url("https://fonts.googleapis.com/css2?family=Moderustic&family=SUSE:wght@600&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Moderustic", "Poppins", sans-serif;
}

body {
  background-color: #f0f5ff;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 20px;
  color: #666;
}

.contact-info {
  margin-bottom: 40px;
}

.contact-info p {
  margin-bottom: 5px;
}

.support-sections {
  display: grid;
  gap: 20px;
}

.form-card {
  background-color: #fff;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.name-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.phone-group {
  display: flex;
  gap: 10px;
}

#country-code {
  width: 80px;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #4169e1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #3154b3;
}

.terms {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
}

a {
  color: #4169e1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
@media (min-width: 769px) {
  .support-sections {
    margin-top: 20px;
    display: flex;
  }
  .support-sections div {
    padding: 40px;
    width: 300px;
    height: 300px;
    border: 1px solid white;
    border-radius: 30px;
    background-color: white;
  }
  .support-section-t {
    padding: 40px;
    border: 1px solid white;
    margin-top: 20px;
    background-color: white;
    border-radius: 30px;
  }
}

.overlay {
  position: relative;
  /* width: 100%;
  height: 100%; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.back-btn {
  top: 20px;
  left: 20px;
  font-size: 1em;
  text-decoration: none;
  color: #38b6ff;
  background: transparent;
  border: 2px solid #38b6ff;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s ease;
}

.back-btn:hover {
  background: #38b6ff;
  color: #fff;
}
/* Navigation Bar */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 1.5px;
}
.info-d {
  padding-top: 10px;
  display: flex;
  justify-content: space-evenly;
}
@media (max-width: 769px) {
  .support-sections {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
  }
  .support-sections div {
    padding: 40px;
    width: 100%;
    height: 200px;
    border: 1px solid white;
    border-radius: 30px;
    background-color: white;
  }
  .support-section-t {
    padding: 40px;
    border: 1px solid white;
    margin-top: 20px;
    background-color: white;
    border-radius: 30px;
  }
  .info-d {
    flex-direction: column;
  }
}
body::-webkit-scrollbar {
  display: none; /* Hides scrollbar in Webkit browsers */
}
