* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
  }
  
  body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: #fafafa;
	color: #333;
	padding: 20px;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
  }
  

  .header {
	text-align: center;
	margin-bottom: 40px;
  }
  
  .header h1 {
	font-size: 2.5rem;
	color: #2c3e50;
	margin-bottom: 10px;
  }
  
  .header p {
	font-size: 1.2rem;
	color: #7f8c8d;
  }
  
 
  .services {
	max-width: 900px;
	margin: 0 auto 40px auto;
	padding: 0 15px;
  }
  
  .services h2 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 2rem;
	color: #34495e;
  }
  

  .services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-bottom: 30px;
  }
  
  .service-item {
	background: white;
	border-radius: 12px;
	padding: 25px;
	box-shadow: 0 3px 8px rgba(0,0,0,0.1);
	text-align: center;
	transition: transform 0.3s ease;
  }
  
  .service-item:hover {
	transform: translateY(-8px);
  }
  
 
  .icon {
	font-size: 3rem;
	margin-bottom: 15px;
  }
  
 
  .service-item h3 {
	margin-bottom: 10px;
	color: #2980b9;
	font-size: 1.3rem;
  }
  
  
  .service-item p {
	color: #555;
	font-size: 1rem;
	line-height: 1.4;
  }
  
 
  .btn-order {
	display: block;
	margin: 0 auto;
	background-color: #2980b9;
	color: white;
	padding: 15px 40px;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
  }
  
  .btn-order:hover {
	background-color: #1c5980;
  }
  
 
  .footer {
	text-align: center;
	padding: 15px;
	background: #2980b9;
	color: white;
	margin-top: auto;
	border-radius: 0 0 12px 12px;
	font-size: 0.9rem;
  }
  
 
  
  @media (max-width: 768px) {
	.services-grid {
	  grid-template-columns: 1fr 1fr;
	}
  }
  
  @media (max-width: 480px) {
	.services-grid {
	  grid-template-columns: 1fr;
	}
  
	.header h1 {
	  font-size: 2rem;
	}
  
	.header p {
	  font-size: 1rem;
	}
  
	.btn-order {
	  padding: 12px 25px;
	  font-size: 1rem;
	}
  }