@font-face {
    font-family: 'Funnel Display';
    src: url('/static/assets/font/Funnel_Display/FunnelDisplay-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  :root {
    --primary-color: #191919;  /* Change it here */
    --secondary-color: #FFCB2E;
    --third-color:#005EFD;
    --primary-font: 'Funnel Display', sans-serif;
    --background-color : #FFFAF3;
    --popup-background-color : rgba(0, 94, 253, 0.2);
    --heading-color:#FFFFFF;
    --button-background-color: #20E578;
  
  }

/* Styles for the sitemap page container */
.sitemap_page_container {
    padding: 20px 50px;
    border-radius: 8px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    min-height: 75vh;
    max-width: 1200px; /* Limit the container's width */
    margin: 0 auto; /* Center the container horizontally */
}

/* Main heading */
.sitemap_page_container h1 {
    font-size: 5rem;
    margin-bottom: 10px;
    /* text-align: center; */
}

/* Secondary headings */
.sitemap_page_container h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.sitemap_page_container .two-column-list {
    list-style-type: none; /* Remove default bullets */
    padding: 0;
    margin: 20px 0 0px 0px; /* Add space after lists */
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for responsive design */
    gap: 10px; /* Add spacing between items */
}

/* Style for each list item in the two-column list */
.sitemap_page_container .two-column-list li {
    flex: 1 1 calc(33% - 10px); /* Each item takes 50% width minus gap */
    margin-bottom: 0px; /* Add some vertical spacing */
}

/* Link styles for the two-column list */
.sitemap_page_container .two-column-list li a {
    text-decoration: none;
    color: #0056b3; /* Blue color for links */
    font-weight: bold;
    transition: color 0.3s;
}

.sitemap_page_container .two-column-list li a:hover {
    color: #003f7f; /* Darker blue on hover */
}


/* List styles */
.sitemap_page_container ul {
    list-style-type: none; /* Remove default bullets */
    padding: 0;
    margin: 0 0 20px 20px; /* Add space after lists */
}

.sitemap_page_container ul li {
    margin-bottom: 8px;
}

/* Link styles */
.sitemap_page_container ul li a {
    text-decoration: none;
    color: #0056b3; /* Blue color for links */
    font-weight: bold;
    transition: color 0.3s;
}

.sitemap_page_container ul li a:hover {
    color: #003f7f; /* Darker blue on hover */
}
