* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.header {
  padding: 30px 40px;
  background: linear-gradient(
    135deg,
    rgba(177, 59, 157, 0.1),
    rgba(77, 116, 201, 0.1),
    rgba(55, 167, 148, 0.1)
  );
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 20px;
  background: linear-gradient(90deg, #b13b9d, #4d74c9, #37a794);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -2px;
}
.logo-img {
  margin: 40px auto 20px;
}
.logo-img img {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  display: block;
}

.tagline {
  font-size: 24px;
  color: #555;
  margin: 0 auto 20px;
  font-weight: 300;
  max-width: 800px;
}

.intro {
  padding: 30px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.intro h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.intro p {
  font-size: 17px;
  margin-bottom: 15px;
  color: #555;
}

.highlight-text {
  font-weight: 600;
  color: #4d74c9;
}

.features {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  justify-content: center;
}

.feature-box {
  flex: 1;
  min-width: 250px;
  margin: 12px;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-box h3 {
  font-size: 20px;
  margin: 15px 0;
  color: #333;
}

.feature-box p {
  color: #666;
  font-size: 15px;
  margin-bottom: 15px;
}

.icon {
  font-size: 48px;
  margin: 0 auto 10px;
  background: linear-gradient(90deg, #b13b9d, #4d74c9, #37a794);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-list {
  list-style-type: none;
  margin-top: 15px;
  text-align: left;
}

.feature-list li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
  font-size: 14px;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4d74c9;
  font-weight: bold;
}

.call-to-action {
  padding: 50px 40px;
  text-align: center;
  background: linear-gradient(135deg, #b13b9d, #4d74c9, #37a794);
  color: white;
}

.call-to-action h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.call-to-action p {
  font-size: 17px;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: white;
  color: #4d74c9;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 30px;
  text-align: center;
  background: #333;
  color: white;
}

.footer p {
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 15px;
}

.contact-info a {
  color: #9dc1fb;
  text-decoration: none;
  margin: 0 14px;
  font-size: 14px;
}

.contact-info a:hover {
  text-decoration: underline;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
  padding: 0 20px;
}

.research-impact {
  padding: 40px;
  background: white;
}

.research-impact h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

.impact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.impact-item {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.impact-item:hover {
  transform: translateY(-5px);
}

.impact-icon {
  font-size: 48px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #b13b9d, #4d74c9, #37a794);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.impact-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.impact-item p {
  color: #666;
  font-size: 14px;
}

/* Media Queries for mobile */

@media (max-width: 600px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
