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


p, a {
  color: #ffffff;
}

html, body {
  height: 100%;
  font-family: 'Arimo', sans-serif;
  color: #333;
}

/* Video background */
.bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Center the content container */
.content-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  text-align: center;
}

/* Logo styling: responsive and centred */
.logo {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-bottom: 20px;
}

/* Text content styling: desktop font set to 1.2rem */
.text-content {
  max-width: 900px;
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 1.2rem;
}

.text-content p {
  margin-bottom: 20px;
  text-align: justify;
}

/* Contact button styling: white stroke, white font, no fill with desktop font 1.2rem */
.btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
  font-size: 1.2rem;
}

.btn:hover {
  background: #fff;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .text-content {
    font-size: 1.1rem;
    padding: 0 10px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .text-content {
    font-size: 1rem;
    padding: 0 5px;
  }
  .btn {
    padding: 8px 16px;
    font-size: 1rem;
  }
}
