@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

body {
  margin: 0;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  background: #f7f9fb;
  color: #222;
}

.container {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 0;
}

.hero.redesigned {
  position: relative;
  background: linear-gradient(120deg, #0072ff 0%, #00c6ff 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 0 3rem 0;
  overflow: hidden;
}

.hero.redesigned .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  opacity: 0.18;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-icon .fa-globe {
  font-size: 4rem;
  color: #fff;
  background: rgba(0, 114, 255, 0.2);
  border-radius: 50%;
  padding: 1.2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.hero h1 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
}

.tagline {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2.2rem;
  color: #e0f7fa;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 1.7rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.social span { font-family: 'FontAwesome'; }

.social.fb:hover { background: #3b5998; transform: scale(1.08); }
.social.tw:hover { background: #1da1f2; transform: scale(1.08); }
.social.ig:hover { background: #e1306c; transform: scale(1.08); }
.social.li:hover { background: #0077b5; transform: scale(1.08); }

main {
  background: #fff;
  padding: 2.5rem 0 1.5rem 0;
}

.about-section {
  margin-bottom: 2.5rem;
  background: #f0f7ff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,114,255,0.06);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
}

.about-section h2 {
  text-align: center;
  color: #0072ff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-section p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.features li {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,114,255,0.07);
  padding: 0.9rem 1.3rem;
  font-size: 1.05rem;
  color: #0072ff;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
}

.features .fa {
  font-size: 1.3rem;
  color: #00c6ff;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #0072ff;
  font-size: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input, textarea {
  padding: 0.75rem;
  border: 1px solid #cfd8dc;
  border-radius: 4px;
  font-size: 1rem;
  background: #f7f9fb;
  resize: none;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #0072ff;
  background: #fff;
}

button[type="submit"] {
  background: linear-gradient(120deg, #0072ff 0%, #00c6ff 100%);
  color: #fff;
  border: none;
  padding: 0.9rem;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

button[type="submit"]:hover {
  background: linear-gradient(120deg, #005bb5 0%, #009ec3 100%);
  transform: scale(1.04);
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.95rem;
}

@media (max-width: 700px) {
  .container {
    width: 98%;
    padding: 1rem 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .about-section h2 {
    font-size: 1.3rem;
  }
  .features {
    flex-direction: column;
    gap: 0.7rem;
  }
} 