* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  scroll-behavior: smooth;
  height: 100%;
  font-family: Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("Gemini-Our-Presence.png") center center / cover no-repeat
    fixed;
  z-index: -1;
}

.full-screen-box {
  margin: -19px 0px 0px 0px;
  width: 100%;
  height: 100vh;
  background: url("Gemini-Our-Presence.png") no-repeat center center/cover;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.content {
  padding: 30px;
  background: rgba(
    0,
    0,
    0,
    0.5
  ); /* semi-transparent background for readability */
  color: white;
  max-width: 500px;
  border-radius: 10px;
  margin: 20px;
}

.content h1 {
  font-size: 1.8em;
  margin-bottom: 15px;
  line-height: 1.4;
}

.content h1 .highlight {
  color: darkgreen;
  font-weight: bold;
}

.content a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: darkgreen;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.content a:hover {
  background-color: #065c2f;
}

/* ============================ */

/* Scrollable section with transparent boxes */
.content-section {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.scroll-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  gap: 20px;
}

.scroll-box .left,
.scroll-box .right {
  flex: 1 1 300px;
}

.scroll-box .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.scroll-box h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: rgb(2, 77, 2);
}

.scroll-box p {
  font-size: 1rem;
  color: white;
  margin-bottom: 20px;
}

.scroll-box .left button,
.scroll-box .right button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: darkgreen;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
button,
a {
  width: 100%;
}

.scroll-box .left button:hover,
.scroll-box .right button:hover {
  background-color: #065c2f;
}

.scroll-box .right {
  text-align: center;
}

.scroll-box .right img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  margin-bottom: 15px;
}
.scroll-box .right img:hover { 
  transition: 0.3s ease-in-out;
  box-shadow:  2px 2px 20px white;
}

@media (max-width: 768px) {
  .content h1 {
    font-size: 1.4em;
  }

  .content {
    padding: 20px;
    margin: 15px;
  }

  /* ========================== */

  .scroll-box {
    flex-direction: column;
    text-align: center;
  }

  .scroll-box .left,
  .scroll-box .right {
    flex: 1 1 100%;
  }

  .scroll-box img {
    max-width: 80%;
  }
}

@media (max-width: 480px) {
  .content h1 {
    font-size: 1.2em;
  }

  .content a {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  /* ====================== */
}
