
      * {
          margin: 0;
          padding: 0;
          box-sizing: border-box; /* This ensures padding doesn't affect the final dimensions of elements */
      }

      html, body {
          height: 100%; /* This makes sure the body covers the entire viewport */
          font-family: Helvetica,sans-serif;
          line-height: 1.6em;
          font-weight: 300;
      }

      body {
          display: flex; /* Establishes a flex container */
          justify-content: center; /* Center children horizontally */
          background: #fff; /* Just a light grey background for contrast */
          line-height: 1.5em;
      }

    h1, h2, h3 {line-height: 1.1em;}

    .wrapper {

      width:100%;
    }

    /* Existing styles */
    /* ... */

    .pagination {
      display: flex;
      justify-content: center; /* Center the pagination links */
      padding: 10px; /* Add some space inside the pagination container */
      margin-top: 20px; /* Optional: Add space between image gallery and pagination */
      list-style: none; /* Remove default list styling */
      width: 100%; /* Full width to fill its container */
      box-sizing: border-box;
    }

    .pagination-item {
      text-decoration: none; /* Remove underline from links */
      margin: 0 5px; /* Add some space between the links */
      padding: 5px 10px; /* Add some space around link text */
      color: #000; /* For example, black text */
      background-color: #f4f4f4; /* For example, light grey background */
      border-radius: 5px; /* Optional: for rounded corners */
    }

    .pagination-item:hover,
    .pagination-item:active {
      background-color: #e4e4e4; /* Darker grey on hover or active */
    }

    /* Optional: Style for the current page's link, if applicable */
    .pagination-item.current {
      color: #fff; /* For example, white text */
      background-color: #007bff; /* For example, a blue background */
    }




    .pagination {
      display: flex;
      padding-left: 0;
      list-style: none;
      border-radius: 0.25rem; }

    .page-link {
      position: relative;
      display: block;
      padding: 0.5rem 0.75rem;
      margin-left: -1px;
      line-height: 1.25;
      color: #007bff;
      background-color: #fff;
      border: 1px solid #dee2e6; }
      .page-link:hover {
        z-index: 2;
        color: #0056b3;
        text-decoration: none;
        background-color: #e9ecef;
        border-color: #dee2e6; }
      .page-link:focus {
        z-index: 3;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }

    .page-item:first-child .page-link {
      margin-left: 0;
      border-top-left-radius: 0.25rem;
      border-bottom-left-radius: 0.25rem; }

    .page-item:last-child .page-link {
      border-top-right-radius: 0.25rem;
      border-bottom-right-radius: 0.25rem; }

    .page-item.active .page-link {
      z-index: 3;
      color: #fff;
      background-color: #007bff;
      border-color: #007bff; }

    .page-item.disabled .page-link {
      color: #6c757d;
      pointer-events: none;
      cursor: auto;
      background-color: #fff;
      border-color: #dee2e6; }

    .pagination-lg .page-link {
      padding: 0.75rem 1.5rem;
      font-size: 1.25rem;
      line-height: 1.5; }

    .pagination-lg .page-item:first-child .page-link {
      border-top-left-radius: 0.3rem;
      border-bottom-left-radius: 0.3rem; }

    .pagination-lg .page-item:last-child .page-link {
      border-top-right-radius: 0.3rem;
      border-bottom-right-radius: 0.3rem; }

    .pagination-sm .page-link {
      padding: 0.25rem 0.5rem;
      font-size: 0.875rem;
      line-height: 1.5; }

    .pagination-sm .page-item:first-child .page-link {
      border-top-left-radius: 0.2rem;
      border-bottom-left-radius: 0.2rem; }

    .pagination-sm .page-item:last-child .page-link {
      border-top-right-radius: 0.2rem;
      border-bottom-right-radius: 0.2rem; }



    .contact-row {
        background-color: #333;
        color: #fff;
        height: 50px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
    }

    .contact-row a {
        color: #fff;
        text-decoration: none;
        margin-left: 20px;
        font-size: 16px;
    }

    .contact-row a:hover {
        text-decoration: underline;
    }

    .contact-row .phone,
    .contact-row .whatsapp {
        display: flex;
        align-items: center;
    }

    .contact-row i {
        margin-right: 10px;
    }

    /* styles.css */
.articles-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Adds space between articles */
  width: 100%; /* Ensures the container takes full width */
}

.article {
  flex: 1 1 100%; /* On mobile, take full width */
}
.article ol {
  maring:0 0 0 20px;
}

/* Media query for desktop screens */
@media (min-width: 768px) {
  .article {
    flex: 1 1 25%; /* On desktop, each takes about 25% of the width */
  }
}

    .article {
      font-size:1.125rem;
      line-height: 1.6em;
    }

    .article a {
      /* font-size:14px!important; */
    }

    .article ul, ol {
      margin:0 0 10[x] 40px;
    }

    .article h2, h3 {
      margin:20px 0 10px 0px;
    }

    .article p {
      margin:10px 0 10px 0;
    }



    .container_main {
      /* font-family: arial; */
      font-size: 24px;
      margin: 0px;
      padding: 15px;
      width: 100%;

      /* outline: dashed 1px black; */
    }


    .child {
        display: flex;
        flex-direction: column; /* Stacks children vertically */
        align-items: center;    /* Centers children horizontally */
        justify-content: center;/* Centers children vertically if there's enough height */
        width: 100%;
        margin: 0 auto;
    }



.header {
    display: flex;
    width:90%;
    margin: 0 auto;
    justify-content: space-between;
     /* Pushes the logo and nav to opposite sides */
    align-items: center; /* Vertically aligns the items in the flex container */
    padding: 5px 0px 5px 0px; /* Add some spacing around the header */
    background-color: #fff; /* Just a color for the header background */

}

.logo {
  justify-content: left;
  margin:0 10px 0 0;
}

.header_links {
  justify-content: center;
}
.header_sign_up {
  align-items: center;
}
.header_sign_up ul {
    display: flex;
    flex-direction: row;
}

.header_sign_up li {
    padding:10px;
}

.logo-image {
    max-height: 50px; /* Restrasdicts the logo size */
    max-width:200px;
     /* Keeps the aspect ratio */
}
.row {
    display: flex;
    /* Center the content of .row horizontally */
    align-items: start;      /* Align items to the start vertically */
    min-height: 60px;
    width: 100%;
}

.breadcrumbs {
  width:100%;
  font-size:14px;
  color: #333;
  background-color:#f7f7f7;
  padding:10px;
}

.category_h1 {
  font-size: 24px;
  font-weight: 700;
}

.city_block_text {
  font-size:14px;
}




/* Style for the dropdown button */
.dropbtn {
    color: #000;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #2947a321;
}

/* Container for the dropdown content */
.dropdown {
    position: relative;
    margin:0 20px 0 0;
    display: inline-block;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    left: -50%; /* Move to the left */
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #2947a321;
}

/* Media query for mobile devices */
@media screen and (max-width: 600px) {
    /* Centered dropdown with 50% width for mobile */
    .dropdown-content {
        position: fixed;
        width: 50%; /* Width is 50% of the screen */
        left: 50%; /* Center the dropdown */
        top: 50%;
        transform: translate(-50%, -50%); /* Adjust position to truly center */
        background-color: rgba(255,255,255,0.9);
        display: none; /* Initially hidden */
        z-index: 2;
        overflow: auto;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    }

    .dropdown-content a {
        text-align: center;
    }
    .header_links {


      margin:10px 0 0 10px;

    }
}




.article {
  display: flex;
  flex-direction: column!important;
  margin-bottom: 20px;
}

.article__inner {
  width: 90%;
  margin: 0 auto;
}

.article__title {
  margin: 0 0 20px;
}

.article__date {
  font-size: 14px;
  margin-bottom: 16px;
  color: #555;
}

.article__body {
  font-size: 1rem;
  line-height: 1.7;
}

/* ── Article tables — responsive ─────────────────────────────────────────── */

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5em 0;
  border: 1px solid #d1d9e0;
  border-radius: 4px;
}

.article__body table {
  border-collapse: collapse;
  width: 100%;
  min-width: 320px;
  margin: 0;
  font-size: 0.9em;
}

.article__body th,
.article__body td {
  padding: 10px 14px;
  border: 1px solid #d1d9e0;
  text-align: left;
  vertical-align: top;
}

.article__body th {
  background-color: #f0f4f8;
  font-weight: 600;
  white-space: nowrap;
}

.article__body tr:nth-child(even) td {
  background-color: #f9fbfc;
}

/* Restore real table rendering overriding property.css global mobile rule */
@media screen and (max-width: 600px) {
  .article__body table   { display: table; }
  .article__body thead   { display: table-header-group; }
  .article__body tbody   { display: table-row-group; }
  .article__body tr      { display: table-row; }
  .article__body th,
  .article__body td      { display: table-cell; }
}

.article a {
  font-size:20px;
}

.article img {
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .article {
    flex-direction: row;
    align-items: left;
  }

  .article img {
    margin-right: 20px;
  }
}
