.wavyUnderline {
    text-decoration-line: underline;       /* Enables the line */
    text-decoration-style: wavy;           /* Makes it wavy */
    text-decoration-color: blue;        /* Sets the color */
    text-decoration-thickness: 1px;        /* Sets the thickness */
    text-underline-offset: 2px;            /* Adds spacing */
}

    /* Reset defaults and basic styling */
    body {
      font-family: Verdana, sans-serif;
      margin: 0;
      padding: 20px;
      background-color: #f4f4f9;
    }

    /* Main Navigation Bar */
    .navbar {
      list-style: none;
      padding: 0;
      margin: 0;
      background-color: #333;
      display: flex;
    }

    /* All list items */
    .navbar li {
      position: relative; /* Anchor point for absolute dropdowns */
    }

    /* All links */
    .navbar a {
      color: #fff;
      display: block;
      padding: 15px 25px;
      text-decoration: none;
      white-space: nowrap;
    }

    /* Hover effect on links */
    .navbar a:hover {
      background-color: #228B22;
    }

    /* --- DROPDOWN MENUS --- */
    
    /* Hide all submenus by default */
    .navbar ul {
      display: none;
      position: absolute;
      list-style: none;
      padding: 0;
      margin: 0;
      background-color: #555;
      min-width: 180px;
      box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    }

    /* First-level dropdown positioning (drops down) */
    .navbar li:hover > ul {
      display: block;
      top: 100%;
      left: 0;
    }

    /* --- NESTED SUBMENUS (Second level and deeper) --- */
    
    /* Second-level dropdown positioning (flies out to the right) */
    .navbar ul li:hover > ul {
      display: block;
      top: 0;
      left: 100%;
    }

    /* Subtle background variance for nested items */
    .navbar ul a {
      padding: 12px 20px;
      font-size: 14px;
    }
    .navbar ul ul background-color {
      background-color: #555;
    }

/* 1. Reset the counter on the container list */
ol.custom-counter-list {
  list-style-type: none; /* Removes default numbering */
  counter-reset: custom-step; /* Initializes a counter named 'custom-step' */
  padding-left: 0;
}

/* 2. Increment and inject the counter for each list item */
ol.custom-counter-list li {
  counter-increment: custom-step; /* Increments counter by 1 per item */
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

/* 3. Add text and number before the item content */
ol.custom-counter-list li::before {
  /* Inject the text and the numerical value of the counter */
  content: "Part" counter(custom-step) ""; 
  font-weight: bold;
  color: #0000FF;
  margin-right: 8px; /* Spaces the prefix away from the text */
}

/* Target only the direct <li> children of .custom-list */
.custom-list > li::marker {
  /* Use the counter() function and append your custom text string */
  content: "Part " counter(list-item) ": ";
  
  /* Optional: Style the number and text independently */
  font-weight: bold;
  color: #0076ff;
}

.empList{
  font-weight: 900;
}

/* 1. Global Resets */
* {
    box-sizing: border-box; /* Ensures padding doesn't break column widths */
    margin: 0;
    padding: 0;
}

/* 2. Header & Footer Layout */
.newsletter-header, .newsletter-footer {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 20px;
    background-color:antiquewhite;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.newsletter-footer {
    margin-top: 30px;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #666;
}

.newsletter-footer a {
    color: #ff4757;
}

/* 3. The 3-Column Flexbox Container */
.newsletter-grid {
    display: flex;
    flex-direction: row;        /* Side-by-side alignment for desktop */
    gap: 5px;                  /* Generates modern, clean spacing between columns */
    max-width: 100%;          /* Centers layout on ultra-wide screens */
    margin: 0 auto;
}

/* 4. Column Sizing and Styling */
.newsletter-col {
    flex: 1;                    /* Forces all 3 columns to scale to equal widths */
    background-color: #FAF9F6;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes the "Read More" link to the bottom */
}

/* Highlight style for the center column to mimic real newsletters */
.feature-col {
    border-top: 4px solid #1e90ff;
}

.newsletter-col h2 {
    color: #111;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.newsletter-col p {
    margin-bottom: 20px;
    color: #555;
}

.read-more {
    color: #1e90ff;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

/* 5. Responsive Media Query for Mobile and Tablets */
@media screen and (max-width: 768px) {
    .newsletter-grid {
        flex-direction: column; /* Stacks the columns vertically on small screens */
    }
    
    .newsletter-col {
        width: 100%;            /* Forces full width stretch on mobile viewports */
    }
}



