/* ===================== GENERAL ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f4f6f9;
  color: #6b7280;
  line-height: 1.6;
  font-size: 16px;
}

a {
  text-decoration: bold;
  color: #0d6efd;
}
/* General styling for all headings (h1 to h6) */


/* h1 - Largest heading */
h1 {
  font-size: 2rem; /* 40px */
  margin-bottom: 20px; /* More space below h1 */
}

/* h2 */
h2 {
  font-size: 1.50rem; /* 32px */
  margin-bottom: 18px;
  
}

/* h3 */
h3 {
  font-size: 1.20rem; /* 28px */
  margin-bottom: 16px;
  color: #1f2937;
 
}

/* h4 */
h4 {
  font-size: 1.1rem; /* 20px */
  margin-bottom: 14px;
}

/* h5 */
h5 {
  font-size: 1.1rem; /* 20px */
  margin-bottom: 12px;
}

/* h6 - Smallest heading */
h6 {
  font-size: 1rem; /* 16px */
  margin-bottom: 10px;
}
/* ===================== HEADER ===================== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0d6efd;
  padding: 12px 25px;
  position: none;
  top: 0;
  z-index: 1000;
}

/* Logo Container */
.logo {
  display: flex;
  align-items: center;  /* Align logo and title horizontally */
  text-align: left;  /* Align text to the left */
}

/* Logo Image */
.logo img {
  height: 60px;   /* Adjust logo size */
  margin-right: 10px;  /* Space between logo and title */
  
}

/* Logo Title */
.logo-title {
  font-size: 24px;  /* Adjust font size for the title */
  font-weight: 700;  /* Make the title bold */
  color: white;
  font-size: 32px;
}

/* Tagline */
.logo-tagline {
  display: block;
  font-size: 14px;  /* Adjust font size for the tagline */
  color: #ccc;  /* Light grey color for the tagline */
  margin-top: 5px;  /* Space between title and tagline */
}

@media (max-width: 768px) {
  /* Mobile Adjustments */
  .logo {
    flex-direction: column; /* Stack logo and title vertically on mobile */
    text-align: center;  /* Center-align the content */
  }

  .logo img {
    height: 50px;   /* Reduce logo size for mobile */
    margin-right: 0;
    margin-bottom: 10px;  /* Space between logo and title on mobile */
  }

  .logo-title {
    font-size: 20px;  /* Adjust title size on mobile */
  }

  .logo-tagline {
    font-size: 12px;  /* Adjust tagline size on mobile */
  }
}
/* Nav */
.nav ul {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav ul li {
  position: relative;
  margin-left: 20px;
}

/* Links */
.nav ul li a {
  display: flex;
  align-items: center;
  gap: 8px; /* ✅ FIXED ICON SPACING */
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: 0.3s;
}

/* Hover */
.nav ul li a:hover {
  background: rgba(255,255,255,0.15);
}

/* Active */
.nav ul li.active a {
  background: rgba(255,255,255,0.2);
}

/* Dropdown */
.dropdown .submenu {
  position: absolute;
  top: 45px;
  left: 0;
  background: #0d6efd;
  color: #000;
  min-width: 160px;
  border-radius: 8px;
  display: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dropdown:hover .submenu {
  display: block;
}

.submenu li {
  margin: 0;
}

.submenu li a {
  color: #333;
  padding: 10px;
  display: block;
}

.submenu li a:hover {
  background: #f1f5f9;
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 60px;
    right: 20px;
    background: #0d6efd;
    width: 220px;
    border-radius: 10px;
    display: none;
  }

  .nav ul {
    flex-direction: column;
    padding: 10px;
  }

  .nav ul li {
    margin: 10px 0;
  }

  .nav.active {
    display: block;
  }

  .dropdown .submenu {
    position: static;
    background: transparent;
    box-shadow: none;
  }

  .submenu li a {
    color: #000;
  }
}

/* ===================== TOP BANNER ===================== */
.top-banner {
  text-align: center;
  padding: 12px;
  background: #eef2ff;
  color: #0b3d91;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid #dbeafe;
}

/* ===================== CONTAINER / LAYOUT ===================== */
.container {
  width: 90%;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

main {
  flex: 1 1 70%;
  
  padding-right: 20px;
}

.sidebar {
	.sidebar {
  flex: 1 1 30%;       /* Base width 30% */
  max-width: 320px;    /* Prevent sidebar from getting too wide */
  position: sticky;    /* Sidebar sticks when scrolling */
  top: 20px;
  height: fit-content;
  box-sizing: border-box;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
}

/* Widgets */
.widget {
  background: #ffffff;
  padding: 18px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.widget h2 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #222;
}

/* Lists */
.widget ul {
  list-style: none;
}

.widget ul li {
  margin-bottom: 8px;
}

.widget ul li a {
  text-decoration: none;
  color: #0073e6;
  font-size: 15px;
}

.widget ul li a:hover {
  text-decoration: underline;
}

/* Search */
.search-widget input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* AdSense */
.adsense-box {
  text-align: center;
  margin-top: 10px;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}Ff
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
}

.section-header p {
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
}

/* ===================== GRID ===================== */
.grid {
  display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Responsive grid */
    gap: 20px;
    padding: 20px;
}

.grid-a {
  display: grid;
  grid-template-columns: 1fr; /* Default: 1 column (mobile) */
  gap: 20px;
  padding: 20px;
}

/* Desktop: 2 columns */
@media (min-width: 768px) {
  .grid-a {
    grid-template-columns: repeat(2, 1fr); 
}
/* ===================== CARDS ===================== */
.card {
  background: #fff;
  border-radius: 16px;
  border-left: 3px solid #ffd166;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  
}

.card:hover {
  transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0d6efd;
}

.card p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
  line-height: 1.7;
}
.card-a {
  background: #fff;
  border-radius: 16px;
  border-top: 3px solid #ffd166;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  
 }

.card-a:hover {
  transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.card-a h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0d6efd;
}

.card-a p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
  line-height: 1.7;
}
.card-b {
  background: #fff;
  border-radius: 16px;
  border-right: 3px solid #ffd166;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.card-b:hover {
  transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.card-b h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0d6efd;
}

.card-b p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
  line-height: 1.7;
}
.card-c {
  background: #fff;
  border-radius: 16px;
  border-left: 3px solid #ffd166;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.card-c:hover {
  transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.card-c h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0d6efd;
}

.card-c p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
  line-height: 1.7;
}
.card-d {
  background: #f7f7f7;
  border-radius: 16px;
  border-left: 3px solid #2563eb;
  border-right: 3px solid #2563eb;
  padding: 20px 20px;
   transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}
.card-d h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #0d6efd;
}

.card-d p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
  line-height: 1.7;
}
 .card-ar {
    background: #fff;
  border-radius: 16px;
  border-top: 3px solid #ffd166;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  }
  .card-ar:hover {
  transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
  .card-ar h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0d6efd;
}

.card-ar p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
  line-height: 1.7;
}
.card-ar li {
  font-size: 14px;        /* Same size as paragraph */
  color: #6b7280;         /* Matches paragraph color */
  margin-bottom: 12px;    /* Slightly smaller spacing than paragraphs */
  line-height: 1.7;       /* Consistent line height */
  list-style-type: disc;  /* Default bullet points */
  padding-left: 20px;     /* Space for bullets */
}

.card-s {
  background: #fff;
  border-radius: 16px;
  border-bottom: 3px solid #2563eb;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.card-s:hover {
  transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.card-s h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0d6efd;
}

.card-s p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
  line-height: 1.7;
}

.icon-box {
  width: 40px;
  height: 40px;
  margin: 0 auto 18px auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  background: linear-gradient(135deg, #0073e6, #00c6ff);
  box-shadow: 0 12px 30px rgba(0, 115, 230, 0.35);
}



/* ===================== BUTTONS ===================== */
.btn-light {
  display: inline-block;
  padding: 10px 18px;
  background: #0073e6;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-light:hover {
  background: #005bb5;
}

.btn-main {
  display: inline-block;
  padding: 12px 28px;
  background: #0d6efd;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.btn-main:hover {
  background: #0b5ed7;
}

.view-all {
  display: inline-block;
  padding: 10px 18px;
  background: #fff;
  color: black;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.view-all:hover {
	background: #ffd166;
	color: #1a5fff;
	font-size: 16px;
	 font-weight: 600;
}

/* ===================== ADS ===================== */
.adsense-box {
  margin-top: 50px;
  padding: 25px;
  border: 1px dashed #d1d5db;
  text-align: center;
  color: #999;
}

.ad-box {
  background: #e9ecef;
  text-align: center;
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  font-size: 14px;
  color: #666;
}

/* ===================== CTA ===================== */
.cta {
  text-align: center;
  background: #f3f4f6;
  padding: 80px 20px;
  border-radius: 16px;
  margin: 80px 0;
}

.cta h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 20px;
}

.cta .btn {
  background: #9333ea;
  color: #fff;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 10px;
}

/* ===================== SIDEBAR WIDGETS ===================== */
.sidebar {
width: 100%;
height: auto;
  flex: 0 0 25%;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-top: 6px solid #ffd166;
}
.sticky-element {
  width: 100%;
  flex: 0 0 25%;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-top: 6px solid #ffd166;
  
  /* Add sticky behavior */
  position: sticky;
  top: 20px; /* Adjust this to where you want the element to stick */
}
.widget {
  margin-bottom: 30px;
}

.widget h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0d6efd;
}

.widget ul {
  list-style: none;
  padding: 0;
}

.widget ul li {
  margin-bottom: 8px;
}

.widget ul li a {
  font-size: 14px;
  color: #333;
  transition: color 0.3s;
}

.widget ul li a:hover {
  color: #0d6efd;
}

.widget input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  color: #333;
  transition: border-color 0.3s;
}

.widget input[type="text"]:focus {
  border-color: #0d6efd;
  outline: none;
}

.adsense.small {
  background: #f1f1f1;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  font-size: 14px;
  color: #999;
  border: 1px dashed #ddd;
  margin-top: 30px;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: #0f172a;
  color: #e5e7eb;
  padding-top: 40px;
  margin-top: 40px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 20px;
}

.footer-column h2 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: #38bdf8;
}

/* Ad */
.footer-ad {
  background: #111827;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid #1f2937;
  font-size: 14px;
  margin-top: 20px;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .sidebar {
    position: relative;
    flex: 1 0 100%;
    margin-top: 20px;
  }

  .section-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 15px;
  }

  .section-header h2 {
    font-size: 24px;
  }
}
/* ===================== mcqs ===================== */

  section { width: 90%; max-width: 900px; margin: auto; }

  .card-m {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 6px solid #2563eb;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .card-m:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(0,0,0,0.1); }

  .question {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .options {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 10px;
  }

  .options li {
    margin: 6px 0;
    padding: 8px 12px;
    border-radius: 8px;
    background: #f1f5f9;
    transition: background 0.2s;
  }

  .options li:hover { background: #e0f2fe; }

  .answer {
    color: #16a34a;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 8px;
  }

  .explanation {
    display: none;
transition: all 0.3s ease;
    background: #f8fafc;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.5;
    margin-top: 5px;
  }
/* ===================== card short ===================== */

  .card-short, .card-long {
    cursor: pointer;
  }
  section { width: 90%; max-width: 900px; margin: auto; }

  .card-short {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 6px solid #2563eb;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .card:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(0,0,0,0.1); }
  .question-short {
    font-weight: 400;
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
/* ===================== TOC ===================== */
html { scroll-behavior: smooth; }
    .toc ul { list-style-type: none; padding-left: 0; }
    .toc li { margin-bottom: 10px; }
    .toc a { text-decoration: none; color: #FF6F61; font-weight: bold; }
    .adsense { margin: 20px 0; text-align: center; }
    .btn { background-color: #FF6F61; color: #fff; padding: 10px 20px; text-decoration: none; border-radius: 5px; }
    .btn:hover { background-color: #ff4c3b; }
	
/* ===================== back to top ===================== */
	
	#back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: none;
  background-color: #FF6F61;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background 0.3s;
}

#back-to-top:hover {
  background-color: #ff4c3b;
}
 /* Hero Section */
        .hero {
            background-image: url('assets/images/hero.png'); /* Background image */
    background-size: cover; /* Ensure the image covers the full section */
    background-position: center; /* Center the background image */
            color: white;
            padding: 50px 20px;
            text-align: center;
            max-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-bottom: 3px solid #ffd166;
        }

        .hero-content {
            max-width: 1000px;
            text-align: center;
        }

        .hero h1 {
            font-size: 32px;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .highlight {
            font-size: 18px;
            color: #ffd166;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .hero p {
            font-size: 16px;
            margin-bottom: 20px;
            line-height: 1.6;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            transition: background 0.3s ease;
            text-transform: uppercase;
        }

        .btn-primary {
            background-color: #ffd166;
            color: #0b3d91;
        }

        .btn-primary:hover {
            background-color: #ffb703;
        }

        .btn-outline {
            border: 2px solid white;
            color: white;
        }

        .btn-outline:hover {
            background-color: white;
            color: #0b3d91;
        }

      
        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 14px;
            }

            .btn {
                padding: 12px 25px;
            }
        }
		/* Container */
.practice-section-modern {
  border-radius: 12px;
  padding: 25px;
  background: #f9fbff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: center;
  font-family: 'Arial', sans-serif;
  margin-top: 30px;
}

/* Section Title */
.practice-section-modern h2 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 20px;
}

/* Button Grid */
.practice-buttons-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  justify-items: center;
}

/* Buttons */
.practice-buttons-modern a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 15px;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  position: relative;
}

/* Hover Animation */
.practice-buttons-modern a:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  background: #FF6F61;
}

/* Tooltip */
.practice-buttons-modern a span.tooltip {
  visibility: hidden;
  width: 180px;
  background-color: #2c3e50;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 6px;
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
}

/* Show tooltip on hover */
.practice-buttons-modern a:hover span.tooltip {
  visibility: visible;
  opacity: 1;
}

/* FontAwesome Icons */
.practice-buttons-modern i {
  font-size: 16px;
  
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .practice-buttons-modern {
    grid-template-columns: 1fr;
  }
}
 .form {
            margin-top: 20px;
        }
        input, textarea {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
       
        }