
/* styles.css - Main Styling */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #f8f9fc, #eef2f7);
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 40px 20px;
}

.header {
  text-align: center;
  margin-bottom: 50px;
}

.header h1 {
  font-size: 3rem;
  color: #2b6cb0;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2rem;
  color: #4a5568;
}

.section {
  background: white;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2c5282;
}

.section p, .section ul {
  font-size: 1.1rem;
  line-height: 1.7;
}

.section ul {
  padding-left: 20px;
}

.contact-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #2b6cb0;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #2c5282;
}
