
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #f7f7f7;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
}

header img {
    height: 50px;
}

header nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

main {
    padding: 20px;
}

.license-details {
    max-width: 800px;
    margin: 0 auto;
}

.license-details h1 {
    color: black;
}

.disclaimer {
    background-color: #cf142b;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 20px;
    color: white;
	font-size: 14px;
}

.business-info, .license-status, .classifications, .bonding-info, .accordion-section {
    margin-bottom: 20px;
}

.business-info h2, .license-status h2, .classifications h2, .bonding-info h2, .accordion-section h2{
    background-color: #024678;
    color: white;
    padding: 10px;
    margin: 0;
}

.business-info p, .license-status p, .classifications ul, .bonding-info p {
    padding: 10px;
    border: 1px solid #ccc;
    margin: 0;
    margin-top: -1px;
}

.classifications ul {
    list-style: none;
    padding: 0;
}

.classifications li {
    border-top: 1px solid #ccc;
    padding: 10px;
}

.classifications a {
    text-decoration: none;
    color: #0066cc;
}

.active {
    color: red;
    font-weight: bold;
}


/* Accordion styles */
.accordion-section {
    margin-top: 20px;
}



.accordion-item {
    border: 1px solid #ccc;
    border-top: none;
}

.accordion-item:first-child {
    border-top: 1px solid #ccc;
}

.accordion-button {
    background-color: #fff;
    color: #000000;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-button:after {
    content: '\002B';
    font-size: 20px;
    color: #0066cc;
}

.accordion-button.active:after {
    content: '\2212';
}

.accordion-content {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
    border-top: 1px solid #ccc;
}


.file-now-button-container {
    text-align: center;
    margin-top: 5px;
}

.file-now-button {
    background-color: #cf142b;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
	text-decoration: none;
    display: inline-block;
}

.file-now-button:hover {
    background-color: #e55d00;
}


/* Popup link styles */
.popup-link-container {
    text-align: center;
    margin-top: 20px;
}

.popup-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 16px;
}

.popup-link:hover {
    text-decoration: underline;
}
