/* Reset some styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

/* Header Styles */
.header {
  background-color: #e74c3c;
  padding: 15px 0;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.auth-buttons button {
  margin-left: 10px;
  padding: 7px 14px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
}

.login-btn {
  background-color: white;
  color: #e74c3c;
}

.signup-btn {
  background-color: white;
  color: #e74c3c;
}

/* Main Section */
.main-content {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.coming-soon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.left-text {
  flex: 1;
  min-width: 300px;
}

.logo {
  max-width: 250px;
  margin-bottom: 20px;
}

.red-text {
  color: #e74c3c;
  font-weight: bold;
  line-height: 1.8;
}

.illustration {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.illustration img {
  max-width: 100%;
  height: auto;
}

/* About Text */
.about-text {
  margin-top: 40px;
  font-size: 15px;
  color: #6b6b6b;
}

/* Contact */
.contact-section {
  background: linear-gradient(to right, #1d3461, #2c64a7);
  color: white;
  padding: 50px 60px;
  margin-top: 40px;
  border-top-left-radius: 100px;
}

.contact-section h3 {
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-info .icon {
  width: 20px;
  vertical-align: middle;
  margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .coming-soon {
    flex-direction: column;
  }

  .auth-buttons {
    margin-top: 10px;
  }

  .contact-info {
    flex-direction: column;
  }
}
