/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  ul {
    list-style: none;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Header styles */
  .main-header {
    width: 100%;
    height: 88px;
    backdrop-filter: blur(6px);
    position: fixed;
    top: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 320px;
    height: 100%;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
  }
  
  .logo-wrapper {
    position: relative;
  }
  
  .logo-front {
    margin-left: -40px;
  }
  
  .company-name {
    color: #fff;
    font-size: 24px;
    margin-left: 12px;
    font-weight: normal;
  }
  
  .nav-list {
    display: flex;
    gap: 32px;
  }
  
  .nav-link {
    color: #fff;
    font-size: 16px;
    cursor: pointer;
  }
  
  /* Hero section */
.hero-section {
    width: 100%;
    height: 1080px;
    background-image: url("img/bg.png");
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 200px;
  }
  
  .hero-logo-container {
    position: relative;
  }
  
.hero-logo-front {
  margin-top: -96px;
}
  
  .hero-title {
    color: #fff;
    font-size: 60px;
    text-align: center;
    margin-top: 40px;
    font-weight: normal;
  }
  
  .hero-description {
    color: #fff;
    font-size: 24px;
    text-align: center;
    line-height: 32px;
    margin-top: 28px;
  }
  
  /* Philosophy section */
  .philosophy-section {
    padding: 80px 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f9fafb;
  }
  
  .section-title {
    font-size: 30px;
    color: #000;
    text-align: center;
    margin-bottom: 64px;
    font-weight: normal;
  }
  
  .philosophy-container {
    display: flex;
    gap: 48px;
  }
  
  .philosophy-image {
    width: 584px;
    height: 389px;
    border-radius: 8px;
    box-shadow:
      0 20px 25px -5px rgba(0, 0, 0, 0.1),
      0 8px 10px -6px rgba(0, 0, 0, 0.1);
    object-fit: cover;
  }
  
  .philosophy-content {
    flex: 1;
  }
  
  .philosophy-title {
    font-size: 24px;
    color: #000;
    margin-bottom: 37px;
    font-weight: normal;
  }
  
  .philosophy-text {
    font-size: 16px;
    color: #4b5563;
    line-height: 26px;
    margin-bottom: 34px;
  }
  
  /* Services section */
  .services-section {
    padding: 80px 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .location-icon-container {
    display: flex;
    margin-right: 8px;
  }
  
  .location-icon {
    margin-right: 8px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
  
  .service-card {
    border-radius: 8px;
    box-shadow:
      0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #fff;
  }
  
  .service-image {
    width: 100%;
    height: 192px;
    object-fit: cover;
  }
  
  .service-icon-container {
    margin: 32px 0 0 32px;
  }
  
  .service-title {
    font-size: 20px;
    color: #000;
    margin: 24px 32px 20px;
    font-weight: normal;
  }
  
  .service-description {
    font-size: 16px;
    color: #4b5563;
    line-height: 24px;
    margin: 0 32px 32px;
  }
  
  /* Company info section */
  .company-info-section {
    padding: 80px 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f9fafb;
  }
  
  .company-info-container {
    display: flex;
    gap: 44px;
  }
  
.company-info-image {
    width: 584px;
    height: 389px;
    border-radius: 8px;
    box-shadow:
      0 20px 25px -5px rgba(0, 0, 0, 0.1),
      0 8px 10px -6px rgba(0, 0, 0, 0.1);
    object-fit: cover;
  }

.company-details {
    border-radius: 8px;
    box-shadow:
      0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -4px rgba(0, 0, 0, 0.1);
    padding: 32px;
    width: 584px;
    line-height: 1;
    background-color: #fff;
  }
  
  .info-item {
    display: flex;
    margin-bottom: 48px;
  }
  
  .info-label {
    width: 80px;
    font-size: 16px;
    color: #4b5563;
  }
  
.info-value {
    margin-left: 115px;
    font-size: 16px;
    color: #4b5563;
    line-height: 1;
  }
  
  .business-list {
    list-style: decimal;
  }
  
.business-item {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 5px;
    position: relative;
    padding-left: 0px;
  }
  
  /* Map section */
  .map-section {
    padding: 0 320px 128px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .map-container {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
      0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -4px rgba(0, 0, 0, 0.1);
  }
  
  .map-iframe {
    border: 0;
    width: 100%;
    height: 100%;
  }
  
  /* Footer */
  .main-footer {
    padding: 48px 320px;
    color: #fff;
    background-color: #111827;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .footer-logo-container {
    display: flex;
    align-items: center;
  }
  
  .footer-logo-wrapper {
    position: relative;
  }
  
  .footer-logo-front {
    margin-left: -32px;
  }
  
  .footer-company-name {
    font-size: 24px;
    margin-left: 11px;
    font-weight: normal;
  }
  
  .footer-divider {
    display: flex;
    align-items: center;
    margin-top: 16px;
  }
  
  .footer-address {
    font-size: 16px;
    font-style: normal;
    margin-top: 16px;
  }
  
  .footer-copyright {
    color: #9ca3af;
    font-size: 14px;
    margin-top: 16px;
  }
  
  /* Media queries */
  @media (max-width: 991px) {
    .header-container,
    .philosophy-section,
    .services-section,
    .company-info-section,
    .map-section,
    .main-footer {
      padding-left: 40px;
      padding-right: 40px;
    }
  
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .company-info-container {
      flex-direction: column;
    }
  
    .company-info-image,
    .company-details {
      width: 100%;
    }
  }
  
@media (max-width: 640px) {
    .nav-list {
      display: none;
    }
  
    .hero-title {
      font-size: 36px;
    }
  
    .hero-description {
      font-size: 16px;
    }
  
    .section-title {
      font-size: 24px;
    }
  
    .philosophy-container {
      flex-direction: column;
    }
  
    .philosophy-image {
      height: 200px;
    }
  
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .company-info-image {
      height: 200px;
    }
  
    .info-item {
      flex-direction: column;
    }
  
    .info-value {
      margin-left: 0;
      margin-top: 8px;
    }
  }

@media (min-width: 641px) {
  .company-details {
    height: 389px;
  }
}
