/* Combined CSS Document */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    padding: 20px;
}

.top-banner {
    background-color: #5a7f0e;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 1.2em;
    font-weight: bold;
}

.top-banner a {
    color: white;
    text-decoration: none;
}

.top-banner a:hover {
    text-decoration: underline;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #f8f8f8;
}

.logo img {
    height: 60px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #2a9d8f;
}

.headline-banner {
    background-color: #5a7f0e; /* same green as top banner */
    color: white;
    text-align: center;
    padding: 20px 10px;
    margin-top: 40px;
}

.headline-banner h2 {
    font-size: 1.5em;
    margin: 0;
}

/* Responsive Image Style */
.responsive-image {
    max-width: 100%; /* Ensures the image doesn't overflow its container */
    height: auto; /* Maintains the image's aspect ratio */
    display: block; /* Removes extra space below the image */
}

/* Center Article */
.center-article {
    padding-top: 14px;
}
.center-article h1 {
    color: #000000;
	font-size: 2.5em;
    text-align: center;
    margin: 0;
}
.center-article h2 {
	color: #000000;
	font-size: 2em;
    text-align: center;
    margin: 0;
}
.center-article p {
    color: #000000;
    padding-right: 30px;
    padding-left: 30px;
}

.article-columns {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.article {
    flex: 1 1 400px;
    max-width: 500px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.article h3 {
    margin-top: 15px;
    font-size: 1.5em;
    color: #000;
}

.article p {
    margin-top: 10px;
    font-size: 1em;
    color: #333;
}
.why-us-section {
    margin-top: 60px;
    text-align: center;
}

.why-us-title {
    font-size: 2.2em;
    margin-bottom: 30px;
    color: #000;
}

.why-us-columns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.why-us-item {
    flex: 1 1 300px;
    max-width: 350px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.why-us-item h3 {
    margin-top: 15px;
    font-size: 1.4em;
    color: #000;
}

.why-us-item p {
    font-size: 1em;
    color: #333;
    margin-top: 10px;
}

.why-us-icon {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.bottom-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.left-column {
    flex: 2;
    min-width: 300px;
}

.left-column h3 {
    font-size: 1.5em;
    margin-top: 20px;
    color: #000;
}

.left-column p {
    margin-top: 10px;
    font-size: 1em;
    color: #333;
}

.city-list {
    columns: 2; /* You can change to 3 if you want 3 columns */
    -webkit-columns: 2;
    -moz-columns: 2;
    list-style: disc inside;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 1em;
    color: #333;
}

.naid-cert {
    display: flex;
    align-items: center;
    margin-top: 15px;
    gap: 10px;
}

.naid-icon {
    width: 50px;
    height: auto;
}

.compliance-logos {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.compliance-icon {
    height: 40px;
    width: auto;
}

.compliance-logos span {
    font-weight: bold;
    color: #000;
    font-size: 1em;
}

.threat-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.threat-item {
    flex: 1 1 200px;
    text-align: center;
}

.threat-item img {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
}

.threat-item p {
    font-size: 0.95em;
    color: #333;
}

.right-column {
    flex: 1;
    min-width: 250px;
}

.right-column h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #000;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
}

.contact-form button {
    background-color: #5a7f0e;
    color: white;
    padding: 12px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #21867a;
}

.phone-link {
    margin-top: 15px;
    font-size: 1.4em;
    text-align: center;
}

.phone-link a {
    color: #5a7f0e;
    text-decoration: none;
    font-weight: bold;
}

.phone-link a:hover {
    text-decoration: underline;
}

/* Dropdown Menu Styles */
nav ul li {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f8f8f8;
    min-width: 200px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    border-radius: 5px;
    z-index: 1000;
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: #eaeaea;
}

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

/* Hover color for parent link */
.dropdown:hover > a {
    color: #2a9d8f;
}


