body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #f5f5dc, #8b1a1a); 
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  font-size: 1.1rem; 
}



a {
  color: #8b1a1a; 
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


.navbar {
  background-color: #8b1a1a;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #f5f5dc;
}


main {
  padding: 2rem;
}


section {
  margin-bottom: 2rem;
}

section h2 {
  color: #8b1a1a;
}


form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: Arial, sans-serif;
  padding-bottom: 3rem; 
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}


button {
  padding: 10px;
  background-color: #8b1a1a;
  color: #edf2f4;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

button:hover {
  background-color: #5c1010;
}

footer {
  background-color: #8b1a1a;
  color: white;
  text-align: center;
  padding: 1rem 0;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .nav-links a {
    padding: 0.5rem 0;
  }
}
.about-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.about-image {
  width: 180px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
} 
.about-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.about-image {
  width: 180px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
} 

