/* ===================================================
   CollegeAdmi Common Blog CSS (Minimal Style) - Updated Font Size
   Author: Munna Kesari | Publisher: CollegeAdmi.com
=================================================== */

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 2;          /* Slightly increased for readability */
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #000000;
  font-size: 18px;          /* 🔹 Increased global font size */
}

/* Header */
header {
  padding: 20px 12px;
  text-align: center;
  border-bottom: 2px solid #000;
}
header h1 {
  margin: 5px 0 10px;
  font-size: 30px;          /* 🔹 Increased */
  font-weight: 700;
}
header p {
  font-size: 18px;          /* 🔹 Increased */
  color: #444;
}

/* Container */
.container {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 15px;       /* Slightly more padding */
}

/* Headings */
h1, h2, h3 {
  margin-top: 30px;
  color: #000;
}
h2 {
  font-size: 26px;          /* 🔹 Increased */
  border-left: 4px solid #000;
  padding-left: 10px;
}
h3 {
  font-size: 22px;          /* 🔹 Increased */
  font-weight: 600;
}

/* Paragraph & Lists */
p {
  margin: 14px 0;
  font-size: 18px;          /* 🔹 Increased */
}
ul, ol {
  margin: 12px 0 22px 24px; /* Slightly more spacing */
}
li {
  margin-bottom: 8px;       /* Increased */
  line-height: 1.8;         /* Better readability */
  font-size: 18px;          /* 🔹 Increased */
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 17px;          /* 🔹 Increased */
}
th, td {
  border: 1px solid #000;
  padding: 12px;            /* Slightly more padding */
  text-align: left;
}
th {
  background: #f3f3f3;
  font-weight: 700;
  font-size: 18px;          /* 🔹 Increased */
}

/* Links */
a {
  color: #000;
  text-decoration: underline;
  font-size: 18px;          /* 🔹 Increased */
}
a:hover {
  color: #007bff;
}

/* WhatsApp Floating Icon */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform 0.2s ease;
}
.whatsapp-icon:hover {
  transform: scale(1.05);
}
.whatsapp-icon img {
  width: 35px;
  height: 35px;
}

/* Footer */
footer, #footer {
  text-align: center;
  padding: 16px;
  margin-top: 30px;
  border-top: 2px solid #000;
  font-size: 16px;           /* 🔹 Slightly increased */
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 26px;
  }
  .container {
    width: 95%;
    padding: 20px 10px;
  }
  table, th, td {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 22px;
  }
  p, li {
    font-size: 17px;
  }
  .whatsapp-icon {
    width: 50px;
    height: 50px;
    right: 15px;
    bottom: 15px;
  }
  .whatsapp-icon img {
    width: 30px;
    height: 30px;
  }
}