* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
li{
  list-style: none;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
body::before {
    content: '';
    position: absolute;
    top: 39px;
    left: -150px;
    width: 333px;
    height: 331px;
    background-color: rgba(30, 131, 255, 0.29);
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
}
body::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 333px;
    height: 331px;
    background-color: rgba(30, 131, 255, 0.29);
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
}


a {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  font-size: 16px;
}
.text{
font-weight: 600;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;

}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 5%;
  border-bottom: 1px solid #eee;
}
.logo{
  width: 54px;
  height: 54px;
}
.logo img {
  height: 100%;
}
nav ul{
  display: flex;
  gap: 50px;
  align-items: center;
}


.coming-soon-btn {
  padding: 8px 15px;
  background: #e6f0ff;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  width: 221px;
  height: 54px;
  color: #005FD3;

}
body {
  background: #f8fafc;
  color: #333;
}

.container {
  display: flex;
  min-height: 100vh;
  gap: 18%;
  background-color: #fff;
}
.tou-p{
  margin-bottom: 30px;
}
.contact-info {
  background: rgba(197, 223, 255, 0.32);
  padding: 40px;
  width: 23%;
  display: flex;
  flex-direction: column;
}

.contact-info h2 {
  font-size: 24px;
}

.p {
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;
}

.info-block {
  display: flex;
  gap: 10px;
  margin-bottom: 45px;
}

.info-block .icon {
  font-size: 20px;
}

.info-block a {
  color: #1d4ed8;
  text-decoration: none;
}

.social-icons {
  margin-top: 40px;
}

.social-icons a {
  margin-right: 15px;
  display: inline-block;
}

.contact-form {
  padding: 60px 40px;
  background: white;
}

.contact-form h1 {
  font-size: 36px;
  margin-bottom: 30px;
}

.contact-form h1 span {
  color: #1d4ed8;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

input, textarea, select {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  flex: 1;
}

textarea {
  resize: vertical;
}

button {
  background: linear-gradient(to right, #2563eb, #3b82f6);
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: linear-gradient(to right, #1e40af, #2563eb);
}
