body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    line-height: 1.6;
    padding: 0 20px;
    color: #333;
}
nav {
  background-color: #333;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}
nav ul li {
  position: relative;
}
nav ul li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 14px 20px;
  transition: background 0.3s;
}
nav ul li a:hover {
  background-color: #81807f;
}
nav ul li ul {
  display: none;
  position: absolute;
  top: 48px;
  left: 0;
  background-color: #444;
  min-width: 180px;
  list-style: none;
  padding: 0;
}
nav ul li:hover ul {
  display: block;
}
main{
    text-align: center;
}
header {
    background-color: #067111a7;
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin-top: 20px;
    border-radius: 8px;
}
header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.about-section h2 {
margin-bottom: 20px;
color: #00695c;
font-size: 2rem;
border-bottom: 3px solid #ffc107;
display:block;
padding-bottom: 8px;
text-align: left;
}
.about-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 5px;
    flex-wrap: wrap;
}

.text-content {
    flex: 1;
    font-size: 1.5em;
    line-height: 1.8;
    text-align: left;
}

.text-content p {
    margin-bottom: 20px;
}
.container {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #00695c;
  font-size: 2rem;
  border-bottom: 3px solid #ffc107;
  display: inline-block;
  padding-bottom: 8px;
}
.places, .foods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.card h3 {
  color: #004d40;
  margin: 10px 0;
}
img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 15px 0;
}
footer{
    background-color: #067111a7;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    font-size: 0.9em;
}