* {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background: #ffffff;
  line-height: 1.7;
  align-items: flex-start;
  flex-direction: column;
}

header {
  color: rgb(255, 255, 255);
  padding: 10px;
}

.header-top {
  display: flex;
  color: #000000;
  justify-content: space-between;
  align-items: center;
  margin-left: 20px;
}

/* Social Share Buttons */
.social-share {
  display: flex;
  gap: 10px;
}

.social-share a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
}

/* Colors */
.facebook {
  background: #1877f2;
}

.whatsapp {
  background: #25d366;
}

.telegram {
  background: #0088cc;
}

.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Hover Effect */
.social-share a:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

nav {
  margin-top: 10px;
  margin-left: 10px;
  color: rgb(119, 101, 68);
}

nav a {
  color: rgb(80, 79, 79);
  text-decoration: none;
  margin: 0 7px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
  color: blue;
}


.container {
  max-width: 900px;
  margin: 50px 100px;
  background: white;
  padding: 40px;
}

.blog-title {
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.4;
}

.blog-icon {
  border-radius: 5px;
  width: 100%;
  height: auto;
  margin-top: 20px;
  align-items: center;

}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #000000;
}

.h3::before {
  content: "👉";
  position: absolute;
  left: 0;
  top: 0;
}

ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

p{
  margin-bottom: 15px;
}
/* Table Style */
table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  font-size: 14px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Table Header */
th {
  background-color: #adadad;
  color: white;
  padding: 12px;
  text-align: left;
}

/* Table Data */
td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

/* Hover Effect */
tr:hover {
  background-color: #f5f5f5;
}

/* Zebra Striping */
tr:nth-child(even) {
  background-color: #fafafa;
}

/* Button container */
.button {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
}

/* Button style */
.btn {
  display: inline-block;
  background: linear-gradient(45deg, red, orange);
  color: white;
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  text-align: center;
}

/* Hover effect */
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


/* news box */
.news-box {
  display: flex;
  flex-direction: row;
  border: 1px solid #ccc;
  margin-left: 5px;
  padding: 10px;
  gap: 10px;
  overflow: hidden;
  object-fit: cover;
}

.img-box {
  width: 300px;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  object-fit: cover;

}

.img-box img {
  width: 100%;
  height: 100%;
}


.text h3 {
  margin: 0;
  object-fit: cover;
  padding-left: 10px;
}

.text h3::before {
  content: none
}


.readmore {
  margin-left: 10px;
  background: rgb(6, 187, 15);
  color: white;
  padding: 5px 5px;
  text-decoration: none;
  border-radius: 10px;
}

ul {
  margin-top: 20px;
}

h3,
ul {
  margin-top: 20px;
}


.comment-box {
  width: 80%;
  max-width: 500px;
  padding: 15px;
  margin: 20px 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #f9f9f9;
}

.comment-box h3 {
  margin-bottom: 10px;
}

.comment-box input,
.comment-box textarea {
  width: 100%;
  max-width: 100%;
  margin: 8px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-sizing: border-box;
  font-size: 14px;
}

.comment-box textarea {
  height: 120px;
  resize: vertical;
}

.comment-box button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}

.comment-box button:hover {
  background: #0056b3;
}


.footer {
  color: rgb(0, 0, 0);
  align-items: center;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  font-size: 16px;
  margin-bottom: 0;
  margin-left: 20px;
}

.footer p {
  font-size: 10px;
}