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

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #004d7a, #008793, #00bf72);
  color: #ffffff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container */
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 15px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
  width: 100%;
}

/* Left Section */
.left-section .icon {
  width: 120px;
  height: auto;
}

/* Middle Section */
.middle-section {
  text-align: center;
}

.title {
font-size: 22px;
  font-weight: bold;
  color: #ffffff;
}

.subtitle {
  font-size: 13px;
  font-weight: 800;
  color: #d4d4d4;
  margin-top: 3px;
}

.description {
  font-size: 15px;
  font-weight: 400;
  color: #d4d4d4;
  margin-top: 6px;
  text-align: center;

}

/* Right Section */
.right-section {
  text-align: right;
}

.nav-links {
  list-style: none;
}

.nav-links li {
  margin: 10px 0;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
  background-color: #007bff;
  border: 2px solid #0056b3;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #0056b3;
  border-color: #003f7f;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .left-section, .right-section {
    margin-bottom: 20px;
  }

  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }
}
