* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}

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

.section {
  background: white;
  margin: 40px auto;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.section h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #667eea;
  text-align: center;
}

.section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.contact-card a {
  color: #667eea;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  word-break: break-all;
}

.contact-card a:hover {
  color: #764ba2;
  text-decoration: underline;
}

.contact-card p {
  color: #666;
  font-size: 1rem;
  margin-top: 10px;
}

.info-section {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  padding: 40px;
  border-radius: 12px;
  margin-top: 40px;
  border-left: 4px solid #667eea;
}

.info-section h3 {
  font-size: 1.5rem;
  color: #667eea;
  margin-bottom: 15px;
}

.info-section p {
  text-align: left;
  margin-bottom: 15px;
  color: #555;
}

.info-section ul {
  list-style: none;
  padding-left: 0;
}

.info-section ul li {
  padding: 8px 0;
  color: #555;
  font-size: 1rem;
}

.info-section ul li:before {
  content: "✓ ";
  color: #667eea;
  font-weight: bold;
  margin-right: 10px;
}

.full-contact-cta {
  background: white;
  padding: 50px 40px;
  border-radius: 12px;
  text-align: center;
  margin: 40px auto;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.full-contact-cta h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.full-contact-cta p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.full-contact-cta a {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.full-contact-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .section {
    padding: 40px 25px;
  }

  .section h2 {
    font-size: 1.8rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .info-section {
    padding: 30px 20px;
  }
}
