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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* Logo Styling */
.logo-container {
    text-align: center;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    width: 400px;
    height: 700px;
    object-fit: contain;
}


/* Header Section */
header {
  background-color: #4caf50;
  color: white;
  padding: 1rem 2rem;
}

nav ul {
  display: flex;
  justify-content: flex-end;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: white;
  font-size: 1.2rem;
}

/* Hero Section */
#hero {
  height: 100vh;
  background-color: #fcfcfc;
  color: rgb(5, 11, 29);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-content {
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

button {
  padding: 10px 20px;
  font-size: 1.2rem;
  cursor: pointer;
  background-color: #4caf50;
  color: #fff;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #45a049;
}

/* Footer Section */
footer {
  background-color: #4caf50;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  margin: 0 1rem;
  color: white;
  font-size: 1rem;
}

footer p {
  font-size: 0.9rem;
}

/* Mobile Styling */
@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  #hero h1 {
    font-size: 2.5rem;
  }

  #hero p {
    font-size: 1.2rem;
  }

  .circle {
    width: 80px;
    height: 80px;
  }

  /* Adjust logo size for smaller screens */
  .logo {
    max-width: 120px;
  }
}
