body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
}

header {
  background-color: darkcyan;
  color: white;
  padding: 20px 10px;
  text-align: center;
  font-family: "Caveat", cursive;
  width: 100%;
  box-sizing: border-box; /* Ensures padding is included in the width */
}

.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  background-color: #fff;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.about-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.about-text {
  padding: 20px;
  flex: 1;
  box-sizing: border-box; /* Ensures padding is included in the width */
}

.about-text h2 {
  color: #333;
  margin-top: 0;
}

.about-text p {
  color: #555;
  line-height: 1.6;
  margin: 0 0 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
  }

  .about-image {
    width: 50%;
    height: auto;
  }

  .about-text {
    width: 50%;
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .about-content {
    flex-direction: column;
    padding: 10px;
  }

  .about-image {
    width: 100%;
    height: auto;
  }

  .about-text {
    width: 100%;
    padding: 20px;
  }
}

.footer {
  background: #333;
  color: #fff;
  padding: 40px 20px;
  position: relative;
  bottom: 0;
  width: 100%;
  box-sizing: border-box; /* Ensures padding is included in the width */
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.footer .footer-section {
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
}

.footer .footer-section h3 {
  margin-bottom: 15px;
  color: #f39c12;
}

.footer .footer-section p,
.footer .footer-section ul,
.footer .footer-section a {
  color: #bbb;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer .footer-section ul {
  list-style: none;
  padding: 0;
}

.footer .footer-section ul li {
  margin-bottom: 10px;
}

.footer .footer-section .social a {
  margin: 0 10px;
  color: #bbb;
  font-size: 20px;
  text-decoration: none;
}

.footer .footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #444;
}

.footer .footer-bottom p {
  margin: 0;
  color: #bbb;
}

/* Media Queries */
@media (max-width: 768px) {
  .footer .footer-content {
    flex-direction: column;
  }

  .footer .footer-section {
    margin-bottom: 20px;
  }
}

h2 {
  font-family: "Caveat", cursive;
}

footer {
  font-family: "Caveat", cursive;
  font-size: 20px;
}

p {
  font-family: "Caveat", cursive;
}
img {
  margin: 8px; /* Adds space around the image */
  padding: 3px; /* Adds space inside the image border */
  border: 1px solid #ccc; /* Adds a light grey border */
  border-radius: 5px; /* Rounds the corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
}
