/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General Styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f0f0f0;
  color: #333;
}

header {
  background: linear-gradient(90deg, #ff6768, #ff1c1c);
  padding: 20px;
  text-align: center;
  color: white;
}

.logo img {
  border-radius: 15px;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  padding: 10px;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

main {
  max-width: 1300px;
  margin: auto;
}

/* Section Styling */
.section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
  margin: 40px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.section:nth-child(odd) {
  background-color: #f9f9f9;
}

.section img {
  margin-bottom: 20px;
  border-radius: 15px;
}

/* Title Styling */
h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #ff1c1c;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ff6768;
}

h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

h4 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #777;
  font-weight: bold;
}

/* Paragraph Styling */
p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Link Styling */
a {
  color: #ff6768;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

a:hover {
  color: #ff1c1c;
  border-bottom: 2px solid #ff1c1c;
}

/* Footer Styling */
footer {
  text-align: center;
  padding: 20px;
  background-color: #ff6768;
  color: white;
}

footer p {
  font-size: 14px;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin-bottom: 10px;
  }

  .section img {
    width: 100%;
  }

  .section {
    padding: 40px 10px;
  }
}
