* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f4f4f4;
}


      



.content {
  padding: 100px 20px;
}







.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-item {
  flex-basis: 48%;
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-item i {
  font-size: 36px;
  color: #58391f;
  margin-right: 15px;
}

.details h2 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #333;
}

.details p,
.details a {
  font-size: 16px;
  color: #555;
}

.details a {
  color: #3498db;
  text-decoration: none;
}

.details a:hover {
  text-decoration: underline;
}

.social-icon {
  font-size: 24px;
  color: #3498db;
  margin-right: 15px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #2c3e50;
}

.contact-form {
  flex-basis: 100%;
  margin-top: 40px;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #58391f;
  border-radius: 4px;
  font-size: 16px;
}

.contact-form button {
  padding: 15px;
  background-color: #58391f;
  color: white;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.contact-form button:hover {
  background-color: #e8d4c1;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .contact-details {
    flex-direction: column;
  }

  .contact-item {
    flex-basis: 100%;
  }
}

/* Footer */
        footer {
            background-color: #58391f ;
            color: white;
            text-align: center;
            padding: 10px 0;
        }

         /* Card Slider */
        .slider-container {
            display: flex;
            overflow: hidden;
            max-width: 100%;
            margin: 20px 0;
        }
        .slider {
            display: flex;
            width: 100%;
            animation: slide 10s infinite;
        }
        .slider div {
            min-width: 100%;
            box-sizing: border-box;
            padding: 20px;
            text-align: center;
            background: #f1f1f1;
            margin: 0 10px;
        }
        @keyframes slide {
            0% { transform: translateX(0); }
            25% { transform: translateX(-100%); }
            50% { transform: translateX(-200%); }
            75% { transform: translateX(-300%); }
            100% { transform: translateX(0); }
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .article-section img {
                width: 100%;
            }
        }