* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

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

.header-logo img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
}

.nav {
  text-align: center;
  margin: 20px 0;
  padding: 10px;
  background-color: #e9ecef;
  border-radius: 5px;
}

.nav a {
  color: #52a2d8;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 3px;
  transition: background-color 0.3s;
}

.nav a:hover {
  background-color: #007bff;
  color: white;
}

.logo-contact-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
  flex-wrap: wrap;
}

.main-logo {
  display: flex;
  justify-content: flex-start;
  flex: 1;
}

.main-logo img {
  max-width: 300px;
  height: auto;
  max-height: 300px;
}

.contact-section {
  background-color: #52a2d8;
  color: white;
  padding: 10px;
  margin: 5px auto 0 auto;
  border-radius: 10px;
  text-align: center;
  width: 320px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

.contact-section h3 {
  color: white;
  border-bottom: 2px solid white;
  margin-bottom: 5px;
  margin-top: 10px;
}

.contact-info {
  font-size: .9em;
  line-height: 1.2;
}

.contact-info a {
  color: #cce7ff;
  text-decoration: none;
}

.contact-info a:hover {
  color: white;
  text-decoration: underline;
}

.house-image {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  float: right;
  margin: 0 0 10px 15px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

.content {
  margin: 5px 0;
}

p {
  margin-bottom: 15px;
  text-align: justify;
}

h3 {
  color: #52a2d8;
  margin: 30px 0 15px 0;
  border-bottom: 2px solid #52a2d8;
  padding-bottom: 5px;
}

h4 {
  color: #52a2d8;
  margin: 25px 0 10px 0;
}

ul {
  margin: 15px 0 15px 30px;
}

li {
  margin-bottom: 5px;
}

.service-item {
  background-color: #f8f9fa;
  padding: 15px;
  margin: 10px 0;
  border-left: 4px solid #a9dff9;
  border-radius: 0 5px 5px 0;
}

.add-services {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.add-serv-a,
.add-serv-b {
  flex: 1;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .container {
    padding: 15px;
    margin: 10px;
  }
  
  .logo-contact-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .main-logo {
    justify-content: center;
  }

  .main-logo img,
  .contact-section {
    max-width: 100%;
    width: auto;
  }
  
  .main-logo img {
    max-height: 150px;
  }
  
  .add-services {
    flex-direction: column;
  }
  
  .house-image {
    max-height: 150px;
    box-shadow: 10px 10px 5px #000666;
  }
  
  .header-logo img {
    max-height: 60px;
  }
  
  h3 {
    font-size: 1.3em;
  }
  
  .service-item {
    padding: 10px;
  }
  
  .contact-section {
    padding: 5px;
  }
  
  ul {
    margin-left: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 10px;
    margin: 5px;
  }
  
  .contact-info {
    font-size: 1em;
  }
  
  .main-logo img {
    max-height: 120px;
  }
  
  .house-image {
    max-height: 120px;
  }
}

