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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #000;
  text-align: center;
  background-color: #4c2e0d; }

.dropdown {
  position: relative;
  display: inline-block; }

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ff8c00;
  min-width: 220px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  padding: 10px;
  border-radius: 5px;
  left: 50%;
  transform: translateX(-50%);
  text-align: left; }

.dropdown:hover .dropdown-content {
  display: block; }

.dropdown-content a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #e67e00; }

.dropdown-content a:hover {
  background-color: #ffa033; }

.centered-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0; }
  .centered-image img {
    max-width: 80%;
    height: 110%;
    border: 3px solid #ff8c00;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); }

.email {
  color: #2F2F2F; }

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 15px;
  background-color: #ff8c00;
  border-bottom: 3px solid #e67e00; }

nav .dropdown a {
  padding: 10px 15px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s;
  white-space: nowrap; }

nav .dropdown a:hover {
  background-color: #4c2e0d;
  color: #FF8400; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center; }

header {
  text-align: center;
  padding: 40px 0;
  background: linear-gradient(to right, #ffa033, #ff8c00);
  border-bottom: 3px solid #e67e00; }
  header h1 {
    color: #000;
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5); }
  header p {
    color: #000;
    font-size: 1.2rem;
    font-weight: bold; }

main {
  padding: 40px 0;
  text-align: center; }

.welcome-text {
  max-width: 800px;
  margin: 0 auto 30px;
  padding: 25px;
  background: linear-gradient(to bottom, #ffb366, #ff9933);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 2px solid #e67e00; }
  .welcome-text h2 {
    color: #000;
    margin-bottom: 15px;
    font-size: 1.8rem; }
  .welcome-text p {
    color: #000;
    font-size: 1.1rem; }

footer {
  text-align: center;
  padding: 25px;
  margin-top: 30px;
  border-top: 3px solid #e67e00;
  background: linear-gradient(to right, #ff8c00, #ffa033);
  color: #000;
  font-weight: bold; }

.orange-accent {
  background-color: #ff9933;
  padding: 5px 10px;
  border-radius: 3px; }

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 10px; }

  .dropdown-content {
    min-width: 200px; }

  header h1 {
    font-size: 2.2rem; } }
@media (max-width: 320px) {
  body {
    display: flex;
    flex-direction: column;
    align-items: center; } }
