html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Logo styling */
.u-header .u-image-1 {
  width: 200px !important;
  height: auto !important;
  max-height: 220px !important;
  margin: 15px auto 0 0 !important;
  transition: transform 0.3s ease;
}

.u-header .u-image-1:hover {
  transform: scale(1.05);
}

.u-header .u-logo-image-1 {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

@media (max-width: 1199px) {
  .u-header .u-image-1 {
    width: 180px !important;
    max-height: 200px !important;
  }
}

@media (max-width: 991px) {
  .u-header .u-image-1 {
    width: 160px !important;
    max-height: 180px !important;
  }
}

@media (max-width: 767px) {
  .u-header .u-image-1 {
    width: 140px !important;
    max-height: 160px !important;
  }
}

@media (max-width: 575px) {
  .u-header .u-image-1 {
    width: 120px !important;
    max-height: 140px !important;
  }
}

.u-footer {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #0D4F4F 0%, #10B981 100%);
    padding: 50px 0 30px;
}

.u-sheet {
    min-height: calc(100vh - 150px);
}

.u-section-1 {
  background: linear-gradient(135deg, #0D4F4F 0%, #10B981 50%, #34D399 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.u-section-1::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite;
}

.u-section-1::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-20px) scale(1.1); opacity: 0.8; }
}

.u-section-1 .u-sheet-1 {
  min-height: 500px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.u-section-1 .u-text-1 {
  font-weight: 800;
  font-size: 3.5rem;
  color: #FFFFFF;
  margin: 0 0 50px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
  animation: fadeInUp 0.8s ease-out;
}

.u-section-1 .u-text-2 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 2;
  color: rgba(255,255,255,0.95);
  text-align: center;
  max-width: 800px;
  font-family: 'Inter', sans-serif;
  animation: fadeInUp 1s ease-out;
}

.u-section-1 .u-text-2 a {
  color: #FBBF24;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.u-section-1 .u-text-2 a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .u-section-1 {
    padding: 100px 0;
  }

  .u-section-1 .u-text-1 {
    font-size: 3rem;
  }

  .u-section-1 .u-text-2 {
    font-size: 1.15rem;
  }
}

@media (max-width: 767px) {
  .u-section-1 {
    padding: 80px 0;
  }

  .u-section-1 .u-sheet-1 {
    min-height: 400px;
  }

  .u-section-1 .u-text-1 {
    font-size: 2.5rem;
  }

  .u-section-1 .u-text-2 {
    font-size: 1.1rem;
    line-height: 1.8;
  }
}

@media (max-width: 575px) {
  .u-section-1 {
    padding: 60px 0;
  }

  .u-section-1 .u-sheet-1 {
    min-height: 350px;
  }

  .u-section-1 .u-text-1 {
    font-size: 2rem;
  }

  .u-section-1 .u-text-2 {
    font-size: 1rem;
    padding: 0 20px;
  }
}

/* Footer */
.u-footer .u-text-1 {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
}

.u-footer .u-text-1 a {
  color: #FBBF24;
  text-decoration: none;
  transition: color 0.3s ease;
}

.u-footer .u-text-1 a:hover {
  color: #FFFFFF;
}

.u-footer .u-text-2 {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
}

.u-footer .u-text-2 a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.u-footer .u-text-2 a:hover {
  color: #FBBF24;
}
