/* General Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  body {
	font-family: 'Poppins', sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
  }
  
  a {
	text-decoration: none;
	color: inherit;
  }
  
  ul {
	list-style: none;
  }
  
  /* Header */
  .header {
	background: #5A55CB;
	color: #fff;
	padding: 15px 0;
  }
  
  .header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  
  .logo h2 {
	font-size: 24px;
	font-weight: 700;
  }
  
  /* Navigation */
  .navbar {
	display: flex;
	gap: 20px;
  }
  
  .navbar a {
	color: #fff;
	font-weight: 500;
	transition: color 0.3s ease;
  }
  
  .navbar a:hover {
	color: #e0e0ff;
  }
  
  /* Hero Section */
  .hero {
	background: url('../images/hero-bg.jpg') no-repeat center center/cover;
	height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
  }
  
  .hero h1 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 20px;
  }
  
  .hero p {
	font-size: 18px;
  }
  
  /* About Section */
  .about {
	padding: 60px 0;
	background: #f9f9f9;
  }
  
  .about h2 {
	text-align: center;
	margin-bottom: 40px;
	font-size: 32px;
	color: #5A55CB;
  }
  
  .about .content {
	max-width: 900px;
	margin: auto;
	text-align: center;
  }
  
  /* Services Section */
  .services {
	padding: 60px 0;
  }
  
  .services h2 {
	text-align: center;
	margin-bottom: 40px;
	font-size: 32px;
	color: #5A55CB;
  }
  
  .service-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 30px;
  }
  
  .service-item {
	flex: 1 1 250px;
	padding: 20px;
	background: #f0f0f8;
	border-radius: 8px;
	text-align: center;
  }
  
  .service-item h4 {
	margin-top: 15px;
	color: #333;
  }
  
  /* Contact Section */
  .contact {
	padding: 60px 0;
	background: #f9f9f9;
  }
  
  .contact h2 {
	text-align: center;
	margin-bottom: 30px;
	color: #5A55CB;
  }
  
  .contact-form {
	max-width: 600px;
	margin: auto;
  }
  
  .contact-form input,
  .contact-form textarea {
	width: 100%;
	padding: 12px;
	margin: 10px 0;
	border: 1px solid #ddd;
	border-radius: 6px;
  }
  
  .contact-form button {
	background: #5A55CB;
	color: #fff;
	padding: 12px 20px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
  }
  
  .contact-form button:hover {
	background: #443ea2;
  }
  
  /* Footer */
  .footer {
	background: #222;
	color: #ccc;
	padding: 20px 0;
	text-align: center;
	font-size: 14px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
	.navbar {
	  flex-direction: column;
	  gap: 10px;
	}
  
	.hero h1 {
	  font-size: 36px;
	}
  
	.service-box {
	  flex-direction: column;
	  align-items: center;
	}
  }
