@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a4f7a;
    --secondary-color: #2c6b9e;
    --accent-color: #e74c3c;
    --text-color: #333333;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --white: #ffffff;
    --border-radius: 6px;
    --box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    font-size: 16px;
}

h1 {
    font-size: 2.25rem;
    margin: 24px 0;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

h2 {
    font-size: 1.75rem;
    margin: 20px 0 16px 0;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: 1.4rem;
    margin: 18px 0 12px 0;
    color: var(--secondary-color);
    font-weight: 600;
}

h4 {
    font-size: 1.2rem;
    margin: 16px 0 10px 0;
    color: var(--secondary-color);
    font-weight: 500;
}

h5 {
    font-size: 1.1rem;
    margin: 14px 0 8px 0;
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    margin: 12px 0 6px 0;
    font-weight: 500;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 16px 0;
    color: #555555;
}

ul {
    padding-left: 0;
    margin: 16px 0;
    list-style: none;
}

li {
    margin-bottom: 0;
    line-height: 1.6;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.main-content a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.main-content a:hover {
    color: var(--accent-color);
    text-decoration-thickness: 2px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

th, td {
    border: 1px solid var(--medium-gray);
    padding: 14px;
    text-align: left;
}

th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

tr:nth-child(even) {
    background-color: var(--light-gray);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header-top {
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header .logo {
    display: flex;
    align-items: center;
    margin: 0;
    flex-shrink: 0;
}

header img {
    height: 60px;
    width: auto;
    max-width: 100%;
}

header .logo a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-default {
    background-color: var(--primary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 0;
}

.container-fluid {
    width: 100%;
    padding: 0;
    position: relative;
}

.navbar-nav {
    display: flex;
    width: 100%;
    margin: 0;
    list-style: none;
    justify-content: center;
}

.navbar-nav > li {
    position: relative;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.navbar-nav > li > a {
    padding: 20px 25px;
    display: block;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    font-size: 1.1rem;
}

.navbar-default .navbar-nav > li > a {
    color: var(--white);
}

.navbar-default .navbar-nav > li > a:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.15);
    border-bottom-color: var(--accent-color);
    text-decoration: none;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 8px;
    vertical-align: middle;
    border-top: 5px solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    transition: var(--transition);
}

.navbar-nav > li > .dropdown-menu {
    padding: 10px 0 10px 0;
    margin-top: 0;
    border: none;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--box-shadow);
    background-color: var(--white);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 15px;
    position: relative;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.navbar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-collapse {
    display: flex;
    width: 100%;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 280px;
    padding: 12px 0;
    margin: 0;
    list-style: none;
    background-color: var(--white);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--box-shadow);
}

.dropdown-menu .active {
    background-color: var(--light-gray);
}

.dropdown-menu .active a {
    color: var(--primary-color);
    font-weight: 600;
}

.dropdown-menu li {
    padding: 0;
    list-style: none;
}

.dropdown-menu li:hover {
    background-color: var(--light-gray);
}

.dropdown-menu li:hover a {
    color: var(--primary-color);
    text-decoration: none;
}

.dropdown-menu > li > a {
    display: block;
    padding: 14px 24px;
    clear: both;
    line-height: 1.5;
    color: var(--text-color);
    white-space: nowrap;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
}

.dropdown-menu .divider {
    height: 1px;
    margin: 10px 0;
    overflow: hidden;
    background-color: var(--medium-gray);
}

.open > .dropdown-menu {
    display: block;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: var(--accent-color);
}

.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: transparent;
    text-decoration: none;
}

.main-content {
    padding: 40px 0;
    background-color: var(--white);
    min-height: 60vh;
}

.main-content .container {
    max-width: 1200px;
}

.main-content:not(.homepage) h1 {
    position: relative;
    background: linear-gradient(135deg, #2a5d84 0%, #3a7bb8 100%);
    color: var(--white);
    padding: 30px 40px;
    margin: 30px 0 40px 0;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    overflow: hidden;
}

.main-content:not(.homepage) h1::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.main-content:not(.homepage) h1::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}


.banner {
    position: relative;
    background: linear-gradient(135deg, #1a4f7a 0%, #2c6b9e 50%, #3a7bb8 100%);
    color: var(--white);
    padding: 100px 40px;
    margin: 0;
    text-align: center;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 30px rgba(26, 79, 122, 0.3);
}

.banner h1 {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: var(--white);
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.banner::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.banner .banner-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 0;
    opacity: 0.9;
    letter-spacing: 0.5px;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.banner .banner-decoration {
    position: absolute;
    width: 100%;
    height: 6px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    z-index: 2;
}


@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}


.banner {
    background: linear-gradient(135deg, #1a4f7a 0%, #2c6b9e 50%, #3a7bb8 100%);
    background-size: 200% 200%;
    animation: shimmer 8s ease infinite;
}

.homepage .a2a_kit {
    margin: 30px 0 0 0;
    position: relative;
    z-index: 2;
}

.homepage .a2a_kit a {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50px !important;
    margin: 0 5px !important;
    transition: all 0.3s ease !important;
}

.homepage .a2a_kit a:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px);
}

.breadcrumb {
    margin-bottom: 10px;
}

.a2a_kit {
    margin: 25px 0;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 24px;
    font-size: 1rem;
    color: var(--dark-gray);
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration-line: none;
}

.breadcrumb .separator {
    margin: 0 10px;
}

.quicklinks {
    background-color: var(--light-gray);
    padding: 24px;
    border-radius: var(--border-radius);
    margin: 16px 0;
    border-left: 4px solid var(--accent-color);
}

.quicklinks a {
    display: block;
    padding: 0;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.05rem;
}

.quicklinks a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.indexleft {
    width: 65%;
    float: left;
    padding: 0 20px 0 0;
    box-sizing: border-box;
}

.indexright {
    width: 35%;
    float: left;
    padding: 20px;
    box-sizing: border-box;
}

.container::after {
    content: "";
    display: table;
    clear: both;
}

.indexleft p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.zipcode,.cities,.depts {
    margin-bottom: 30px;
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.indexright table{ margin:0 0 1rem 0;}

.zipcode div:first-child,.cities div:first-child,.depts div:first-child {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.cities table,.zipcode table,.depts table {
    width: 100%;
    border-collapse: collapse;
}

.cities th,.cities td,.zipcode th,.zipcode td,.depts th,.depts td {
    padding: 12px;
    text-align: left;
}

.depts table td:last-child {
  white-space: nowrap;
}

.cities th,.zipcode th,.depts th {
    background-color: var(--primary-color);
    color: var(--white);
}

.cities a,.zipcode a,.depts a {
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: none;
}

.cities a:hover,.zipcode a:hover,.depts a:hover {
    text-decoration: underline;
}

.links {
    padding: 50px 0;
    background-color: var(--light-gray);
}

.links h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.links ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding: 0;
}

.links ul li {
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    min-height: 100px;
    border: 1px solid transparent;
}

.links ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.links ul li a {
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
}

.links ul .now {
    background-color: var(--primary-color);
}

.links ul .now a {
    color: var(--white);
}

footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

footer p {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

footer .footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 0;
}

footer .footer-links li {
    margin: 0;
}

footer .footer-links li a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.05rem;
}

footer .footer-links li a:hover {
    color: var(--medium-gray);
    text-decoration: underline;
}

#topBtn {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--accent-color);
    color: white;
    cursor: pointer;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

#topBtn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.a2a_kit {
    margin: 20px 0;
    text-align: center;
}

.header-spacer {
    flex: 1;
    min-width: 60px;
}

.navbar-container {
    flex: 2;
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 991px) {
    .hamburger-menu {
        display: flex;
        order: -1;
    }
    
    .navbar-collapse {
        display: none;
        flex-direction: column;
        width: 100%;
        position: fixed; 
        top: 40px; 
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--primary-color);
        z-index: 1001;
        overflow-y: auto;
        padding: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .navbar-collapse.show {
        display: flex;
        transform: translateX(0);
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .navbar-nav > li {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0;
        background-color: rgba(0, 0, 0, 0.2);
        border: none;
        box-shadow: none;
        display: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .open > .dropdown-menu {
        display: block;
        max-height: 500px;
    }
    
    .dropdown-menu li {
        padding-left: 30px;
    }
    
    .dropdown-menu > li > a {
        color: #666666;
        padding: 12px 30px;
        border-left: 3px solid transparent;
        background-color: rgba(0, 0, 0, 0.1);
        font-size: 1rem;
        font-weight: 500;
    }
    
    .dropdown-menu > li > a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-left-color: var(--accent-color);
        font-weight: 600;
    }
    
    .dropdown-menu .divider {
        background-color: rgba(255, 255, 255, 0.2);
        margin: 8px 30px;
    }
    
    header .container {
        display: flex;
        align-items: center;
        position: relative;
    }
    
    .logo {
        flex-grow: 1;
        text-align: center;
        margin: 0 auto;
    }
    
    .header-spacer,
    .navbar-container {
        display: none;
    }
    
    header img {
        height: 40px;
    }
    
    .indexleft,
    .indexright {
        width: 100%;
        float: none;
        padding: 10px;
    }
    
    .navbar-default .navbar-nav > .active > a,
    .navbar-default .navbar-nav > .active > a:focus,
    .navbar-default .navbar-nav > .active > a:hover {
        background-color: rgba(255, 255, 255, 0.2);
        border-left: 3px solid var(--accent-color);
    }
    
    .navbar-default .navbar-nav > .open > a,
    .navbar-default .navbar-nav > .open > a:focus,
    .navbar-default .navbar-nav > .open > a:hover {
        background-color: rgba(255, 255, 255, 0.3);
        border-left: 3px solid var(--accent-color);
    }
    

    .banner {
        padding: 80px 30px;
        min-height: 250px;
        margin-bottom: 0;
    }
    
    .banner h1 {
        font-size: 2.8rem;
    }
    
    .banner .banner-subtitle {
        font-size: 1.3rem;
    }
}

@media only screen and (min-width: 992px) {
    header .container {
        justify-content: flex-start;
    }
    
    .logo {
        margin-right: 40px;
    }
    
    .navbar-container {
        display: flex;
        justify-content: center;
    }
    
    .header-spacer {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .main-content {
        padding: 30px 0;
    }
    
    .links ul {
        grid-template-columns: 1fr;
        gap: 16px;
    }
	
	.article table, 
	.article thead, 
	.article tbody, 
	.article th, 
	.article td, 
	.article tr {
		display: block;
	}

	.article thead tr {
		display: none;
	}

	.article tr {
		margin-bottom: 15px;
		border: 1px solid #ddd;
	}

	.article td {
		border: none;
		border-bottom: 1px solid #eee;
		position: relative;
		padding-left: 40%;
		word-break: break-word;
		overflow-wrap: break-word;
	}

	.article td:before {
		content: attr(data-label);
		position: absolute;
		left: 10px;
		font-weight: bold;
	}
	
	.main-content h1 {
        padding: 25px 20px;
        margin: 20px 0 30px 0;
        font-size: 1.8rem;
    }
    
    .main-content h1::before,
    .main-content h1::after {
        display: none;
    }
    

    .banner {
        padding: 70px 20px;
        min-height: 220px;
        margin-bottom: 0;
    }
    
    .banner h1 {
        font-size: 2.4rem;
        margin-bottom: 15px;
    }
    
    .banner .banner-subtitle {
        font-size: 1.2rem;
    }
    
    .banner::before,
    .banner::after {
        display: none;
    }
    
    footer .footer-links {
        flex-direction: column;
        gap: 12px;
    }
    
    #topBtn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

@media only screen and (max-width: 479px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    header img {
        height: 35px;
    }
    
    #topBtn {
        bottom: 15px;
        right: 15px;
    }
    
    .quicklinks {
        padding: 20px;
        margin: 12px 0;
    }
    
    .navbar-collapse {
        top: 35px;
    }
	
	.main-content h1 {
        padding: 20px 15px;
        margin: 15px 0 25px 0;
        font-size: 1.6rem;
    }
    

    .banner {
        padding: 60px 15px;
        min-height: 200px;
        margin-bottom: 0;
    }
    
    .banner h1 {
        font-size: 2rem;
    }
    
    .banner .banner-subtitle {
        font-size: 1.1rem;
    }
}