* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lora", Georgia, serif !important;
}

html {
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: #fef8ec !important;
}

body {
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-family: "Lora", Georgia, serif !important;
  background: #fef8ec !important;
}

.container {
  background: #fef8ec !important;
  width: 100%;
  height: 100vh;
  padding: 15px 30px;
  box-shadow: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  gap: 20px;
}

.logo-section {
  text-align: center;
  margin: 0;
  margin-bottom: -10px;
  flex-shrink: 0;
}

.logo-container {
  display: inline-block;
  margin-bottom: 0;
}

.logo-image {
  width: 450px;
  height: 180px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.company-name {
  font-size: 1.8rem;
  font-weight: 300;
  color: #000;
  letter-spacing: 3px;
  margin-bottom: 0;
  text-align: right;
}

.company-name-line {
  display: block;
}

.tagline {
  color: #000;
  font-size: 0.85rem;
  margin-top: 5px;
  font-weight: 300;
}

.quote-section {
  text-align: center;
  margin: 0;
  flex-shrink: 0;
}

.quote {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 5px;
  line-height: 1.3;
}

.author {
  color: #000;
  font-size: 1.15rem;
  margin: 0;
}

.services-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 50px;
  margin: 0;
  flex-wrap: wrap;
  overflow: visible;
  position: relative;
  flex-shrink: 0;
  align-items: center;
}

.service-item {
  position: relative;
  cursor: pointer;
  padding: 8px 15px;
  transition: all 0.3s ease;
  display: inline-block;
  flex-shrink: 0;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.service-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fef8ec !important;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  min-width: 400px;
  max-width: 600px;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  box-sizing: border-box;
  max-height: 70vh;
  overflow-y: auto;
}

.service-content::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fef8ec;
}

.service-item:hover .service-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.service-item:hover .service-title {
  color: #f4b942;
}

.service-content h3 {
  color: #000;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-content p {
  color: #000;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-content p:last-child {
  margin-bottom: 0;
}

.service-content ul {
  list-style: none;
  margin-top: 12px;
}

.service-content ul li {
  color: #000;
  font-size: 0.85rem;
  padding: 4px 0;
  position: relative;
  padding-left: 18px;
}

.service-content ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #f4b942;
}

.description {
  text-align: center;
  margin: 0;
  font-size: 0.95rem;
  color: #000;
  line-height: 1.3;
  flex-shrink: 0;
}

.contact-section {
  text-align: center;
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid #e0e0e0;
  flex-shrink: 0;
}

.contact-text {
  color: #000;
  margin-bottom: 3px;
  font-size: 0.95rem;
}

.email {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.email:hover {
  color: #f4b942;
}

@media (max-width: 768px) {
  .container {
    padding: 12px 20px;
    height: 100vh;
  }

  .logo-image {
    width: 380px;
    height: 150px;
  }

  .company-name {
    font-size: 1.3rem;
    letter-spacing: 2px;
  }

  .divider {
    margin: 4px auto;
  }

  .quote {
    font-size: 1.1rem;
  }

  .author {
    font-size: 0.95rem;
  }

  .services-section {
    gap: 15px;
    margin: 0;
    flex-direction: column;
    align-items: center;
  }

  .service-item {
    padding: 6px 12px;
  }

  .service-title {
    font-size: 1.1rem;
  }

  .service-content {
    min-width: calc(100vw - 60px);
    max-width: calc(100vw - 60px);
    width: calc(100vw - 60px);
    padding: 20px 25px;
    box-sizing: border-box;
    max-height: 60vh;
  }

  .service-item:hover .service-content {
    transform: translate(-50%, -50%) scale(1);
  }

  .description {
    font-size: 0.8rem;
    margin: 0;
  }

  .contact-section {
    margin-top: 0;
    padding-top: 8px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 10px 15px;
    height: 100vh;
  }

  .logo-image {
    width: 320px;
    height: 130px;
  }

  .company-name {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
  }

  .divider {
    margin: 4px auto;
  }

  .quote {
    font-size: 0.75rem;
  }

  .author {
    font-size: 0.65rem;
  }

  .services-section {
    gap: 12px;
    flex-direction: column;
    align-items: center;
    margin: 0;
  }

  .service-item {
    padding: 5px 10px;
  }

  .service-title {
    font-size: 0.8rem;
  }

  .service-content {
    min-width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    width: calc(100vw - 40px);
    padding: 20px 22px;
    box-sizing: border-box;
    max-height: 55vh;
  }

  .service-item:hover .service-content {
    transform: translate(-50%, -50%) scale(1);
  }

  .description {
    font-size: 0.75rem;
    margin: 0;
  }

  .contact-section {
    margin-top: 0;
    padding-top: 6px;
  }

  .contact-text {
    font-size: 0.75rem;
  }

  .email {
    font-size: 0.75rem;
  }
}
