* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }
    body {
      background-color: #f4f7fa;
      color: #333;
    }
    header {
		height: 136px;
	  /* background: url('../images/logo2.png') center; */
      background-color: #14163f;  
      /*color: white;
      padding: 20px 0;
      text-align: center;
	  */
	  background-repeat: no-repeat;
	  background-size: auto;
    }
	header img{
		width:auto;
		height:auto;
		max-width:100%;
		max-height:130px%;
	}
    nav {
      display: flex;
      justify-content: center;
      background-color: #133b5c;
    }
    nav a {
      color: white;
      padding: 15px 20px;
      text-decoration: none;
    }
    nav a:hover {
      background-color: #1e5f74;
    }
    .hero {
      background: url('../images/hero-cover.jpg') center/cover;
      height: 400px;
      color: #fff;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 20px;
    }
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
    }
	.hero h1 span{
		padding-left: 5px;
		padding-right: 5px;
		background-color: #14163f;
		border-color: #14163f;
		border-radius: 10px;
	}
	.hero-text{
		font-size: 1.2rem;
		padding-left: 5px;
		padding-right: 5px;
		background-color: #14163f;
		border-color: #14163f;
		border-radius: 10px;		
	}
    
    .section {
      padding: 40px 20px;
      max-width: 1100px;
      margin: auto;
    }
    .services {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    .service {
      background-color: white;
      flex: 1 1 30%;
      margin: 10px;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .service h3 {
      margin-bottom: 10px;
    }
    .service img {
      max-width: 100%;
      border-radius: 6px;
      margin-bottom: 10px;
    }
    .case-study {
      margin-top: 15px;
      font-style: italic;
      font-size: 0.95rem;
      color: #555;
    }
    footer {
      background-color: #0a2540;
      color: white;
      text-align: center;
      padding: 20px 0;
    }
    @media (max-width: 768px) {
      .services {
        flex-direction: column;
      }
    }