* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #3fa65b;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
  background-color: white;
  padding: 40px;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  flex: 1;
}

.left-section {
  width: 55%;
}

.logo {
  margin-bottom: 30px;
}

.logo h1 {
  font-size: 48px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.logo h2 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.tagline {
  font-size: 20px;
  font-weight: bold;
  color: #555;
  margin-bottom: 30px;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.right-section {
  width: 45%;
  display: flex;
  flex-direction: column;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.menu-item {
  display: flex;
  align-items: center;
  background-color: #ffd93b;
  border: 2px solid #333;
  border-radius: 8px;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-decoration: none;
  color: #333;
}

.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: #ffdf5a;
}

.icon {
  width: 50px;
  height: 50px;
  margin-right: 20px;
  border: 2px solid #333;
  border-radius: 5px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.menu-item:hover .icon img {
  transform: scale(1.2);
}

footer {
  background-color: #f5f5f5;
  padding: 15px 20px;
  text-align: center;
  font-size: 12px;
  color: #666;
  border-top: 1px solid #e5e5e5;
  width: 100%;
  box-sizing: border-box;
  margin-top: 20px;
  border-radius: 0 0 15px 15px;
}

footer a {
  color: #666;
  text-decoration: none;
  margin: 0 5px;
}

footer a:hover {
  text-decoration: underline;
}

.page-header {
  background-color: #ffd93b;
  color: #333;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 20px;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid #333;
  border-bottom: none;
}

.page-header h1 {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 30px;
  }
  
  .left-section, .right-section {
    width: 100%;
  }
  
  .logo h1 {
    font-size: 36px;
  }
  
  .logo h2 {
    font-size: 28px;
  margin-bottom: 15px;
  }
  
  .page-header h1 {
    font-size: 28px;
  }
  
  .menu-item {
    padding: 12px;
    font-size: 16px;
  }
  
  .icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
  
  .icon img {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px;
  }
  
  .container {
    padding: 20px;
  }
  
  .logo h1 {
    font-size: 30px;
  }
  
  .logo h2 {
    font-size: 24px;
  margin-bottom: 10px;
  }
  
  .tagline {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .description {
    font-size: 14px;
  }
}