/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  background-color: #EEF2F3;
  color: #374151;
  line-height: 1.6;
  font-size: 14px;
}

/* Layout Styles */
.container {
  min-height: 100vh;
}

.content {
  max-width: 1611px;
  margin: 0 auto;
  padding: 48px 16px;
}

/* Header Styles */
.header {
  text-align: center;
  margin-bottom: 55px;
}

.logo-container {
  margin-bottom: 24px;
}

.logo {
  width: 167px;
  height: 48px;
  display: block;
  margin: 0 auto;
}

.header h1 {
  color: #2F3439;
  margin-bottom: 16px;
  font-size: 30px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  line-height: 56px;
}
.header hr {
  border-top: 2px solid #0F6DAA;
  width: 95px;
	margin: 0 auto;
	margin-bottom: 20px;  
}

.header p {
  color: #2F3439;
  font-size: 20px;
  line-height: 24px;
}

/* Grid Styles */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 29px;
  margin-bottom: 55px;
}

/* Service Card Styles */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: white;
  border-radius: 15px;
  padding: 30px;
  border: 1px solid #E4E4E4;
  transition: box-shadow 0.2s ease;
}

.service-card:hover {
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.service-icon {
  width: 66px;
  height: 60px;
  margin-bottom: 30px;
}

.service-card h3 {
  font-size: 21px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  line-height: 25px;
  color: #0A1D33;
  margin-bottom: 22px;
}

.service-card p {
  color: #0A1D33;
  margin-bottom: auto;
  font-size: 18px;
  line-height: 29px;
}

.service-link {
  color: #4FABC2;
  text-decoration: underline;
  font-size: 16px;
  line-height: 25px;
  transition: color 0.2s ease;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  align-self: flex-start;
  margin-top: 40px;
}

.service-link:hover {
  color: #0F6DAA;
}

/* Footer Styles */
.footer {
  text-align: center;
}

.footer-links {
  color: #4FABC2;
  font-size: 20px;
  line-height: 24px;
}

.footer-links a {
  color: #4FABC2;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #0F6DAA;
}

.footer-separator {
  margin: 0 4px;
  color: #4FABC2;
}

/* Media Queries for Responsive Design */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1340px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .content {
    padding: 35px;
  }
  
  .header{
	  margin-bottom: 22px; 
  }

  .header h1 {
    font-size: 24px;
	  line-height: 35px;
  }
  
  .header p {
	  font-size: 14px;
	  line-height: 24px;
  }
  
  .service-link {
	  font-size: 15px;
	  line-height: 23px;
    margin-top: 30px;
  }

  .services-grid {
    gap: 22px;
	  margin-bottom:43px;
  }

  .service-card h3{
	  margin-bottom: 20px;
  }

  .footer-links {
    font-size: 13px;
  }
}