html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f3f3f3;
    color: #000000;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}
.top-bar {
    height: 8px;
    background-color: #179E47;
    width: 100%;
}
.bottom-bar {
    height: 8px;
    background-color: #179E47;
    width: 100%;
    margin-top: auto;
}
.content-wrapper {
    margin: 0 auto;
    flex: 1;
    max-width: 8.5in;
}
.letterhead {
    padding: 1.5rem 0.8in;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.logo-container {
    display: flex;
    align-items: center;
}
.logo {
    max-width: 200px;
}
.contact-container {
    text-align: right;
    padding-left: 1rem;
}
.contact-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}
.contact-item {
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.contact-item i {
    color: #179E47;
    margin-right: 0.5rem;
    font-size: 1rem;
}
.contact-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-item a:hover {
    color: #179E47;
}
.main-content {
    margin: 0 0.8in;
    padding-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}
h1, h2, h3 {
    margin-bottom: 0.5rem;
    color: #179E47;
}
p {
    margin: 0 0 1rem;
    font-size: 1rem;
}
header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #d9d9d9;
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
header h1 {
    font-size: 2.5rem;
    margin: 0;
}
header p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}
.hero-container {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    height: auto;
    max-height: 3.5in;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    color: #fff;
    box-sizing: border-box;
}
.hero-overlay h2 {
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: bold;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}
.hero-overlay p {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    max-width: 800px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}
section {
    margin-bottom: 3rem;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-top: 4px solid #179E47;
    position: relative;
}
section h2 {
    margin: 2rem auto;
    font-size: 2rem;
    border-bottom: 4px solid #179E47;
    padding-bottom: 0.5rem;
    text-align: center;
    color: #179E47;
    position: relative;
}
.section-icon {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #179E47;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.highlight {
    background-color: #179E47;
    color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    text-align: center;
}
.highlight p:first-child {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.highlight p {
    font-size: 1.1rem;
    margin-top: 15px;
}
footer {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 2rem;
    color: #333333;
    padding: 2rem 0 1rem;
    border-top: 1px solid #eee;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}
footer a {
    color: #179E47;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
.footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
}
.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #179E47;
}
.faq-item h3 {
    margin-bottom: 0.5rem;
    color: #179E47;
    font-size: 1.2rem;
}
.faq-item h3 i {
    margin-right: 10px;
}
.faq-item p {
    margin-top: 0.5rem;
}

.business-type-nav {
    display: flex;
    justify-content: space-around;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}
.business-type-link {
    color: #179E47;
    text-decoration: none;
    padding: 0.8rem 1rem;
    margin: 0.5rem;
    border: 1px solid #179E47;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}
.business-type-link i {
    margin-right: 0.5rem;
}

.scam-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 5px;
    box-sizing: border-box;
    width: 100%;
}
.scam-item i {
    color: #ff4d4d;
    margin-right: 1rem;
    font-size: 1.2rem;
}
.scam-content {
    flex: 1;
}
.scam-content h3 {
    margin: 0 0 0.3rem 0;
    color: #333;
}

.warning-banner {
    background-color: #FFF9E6;
    border-left: 4px solid #FFCC00;
    padding: 1rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}
.warning-banner i {
    color: #FFCC00;
    font-size: 1.5rem;
    margin-right: 1rem;
}
ul {
    margin-bottom: 1rem;
}
.section-container {
    border-left: 3px solid #179E47;
    padding-left: 1.5rem;
    margin: 2rem 0;
    background-color: #f9f9f9;
    padding: 1.5rem;
    padding-left: 2rem;
    border-radius: 5px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
    box-sizing: border-box;
    width: 100%;
    overflow-wrap: break-word;
}
#table-of-contents {
    margin: 2rem 0;
}
#table-of-contents ul {
    list-style-type: none;
    padding-left: 0;
}
#table-of-contents li {
    margin-bottom: 0.5rem;
}
#table-of-contents a {
    color: #179E47;
    text-decoration: none;
}
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
    text-align: center;
}
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 180px;
}
.trust-badge i {
    font-size: 3rem;
    color: #179E47;
    margin-bottom: 0.5rem;
}
.trust-badge p {
    font-size: 0.9rem;
    font-weight: bold;
    margin: 0;
}
.trust-badge span {
    font-size: 0.8rem;
    color: #666;
}
.guarantee-badge {
    display: inline-block;
    background-color: #ffdd00;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    margin: 1rem 0;
    border: 2px dashed #179E47;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.guarantee-badge i {
    color: #179E47;
    margin-right: 0.5rem;
}
.testimonial {
    background-color: #f9f9f9;
    border-left: 4px solid #179E47;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    position: relative;
    border-radius: 0 5px 5px 0;
    box-sizing: border-box;
    width: 100%;
}
.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: #ddd;
    position: absolute;
    top: -1.5rem;
    left: 0.5rem;
    font-family: Georgia, serif;
}
.testimonial-author {
    text-align: right;
    font-style: normal;
    font-weight: bold;
    margin-top: 0.5rem;
}
.map-callout {
    position: relative;
    background: url('images/map.webp') center center/cover no-repeat;
    border-radius: 8px;
    margin: 3rem 0;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 400px;
    width: 100%;
    box-sizing: border-box;
}
.map-overlay {
    background-color: rgba(23, 158, 71, 0.95);
    padding: 3rem 2rem;
    color: white;
    text-align: center;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}
.map-callout h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 2px 3px rgba(0,0,0,0.3);
    font-weight: 700;
}
.map-callout p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.map-cta {
    display: inline-block;
    background: #fff;
    color: #179E47;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.trust-bar {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding: 1rem;
    background: #f3f3f3;
    border-top: 4px solid #179E47;
    text-align: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}
.trust-item {
    flex: 1;
    min-width: 150px;
    max-width: 250px;
    padding: 1rem;
}
.trust-item i {
    font-size: 2rem;
    color: #179E47;
    margin-bottom: 0.5rem;
}
.trust-item p {
    font-size: 0.9rem;
    font-weight: bold;
    margin: 0;
}
.icon-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}
.icon-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 0.8rem;
}
.icon-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #179E47;
}
@media only screen and (max-width: 768px) {
    /* Mobile responsive styles */
    .letterhead {
        padding: 1rem 1rem;
    }
    
    .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    .logo {
        max-width: 180px;
    }
    
    .contact-container {
        padding-left: 0;
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .contact-group {
        margin-bottom: 0;
    }
    
    .contact-item {
        justify-content: center;
        margin-bottom: 0.2rem;
        font-size: 0.9rem;
    }
    
    .main-content {
        margin: 0 1rem;
        padding-top: 1rem;
        width: auto;
    }
    
    .hero-container {
        max-height: none;
        height: auto;
        margin-bottom: 1.5rem;
        border-radius: 0;
    }
    
    .hide-mobile {
        display: none;
    }
    
    .hero-image {
        height: 250px;
        object-fit: cover;
    }
    
    .hero-overlay {
        padding: 1rem;
    }
    
    .hero-overlay h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-overlay p {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    /* Fix for section icons on mobile */
    section {
        margin-top: 25px;
        padding: 1.5rem;
        overflow-x: hidden;
        position: relative;
    }
    
    .section-icon {
        top: 0px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .section-container {
        padding: 1.2rem;
        padding-left: 1.5rem;
    }
    
    .business-options {
        display: block;
    }
    
    .business-option {
        margin-bottom: 1rem;
        width: 100%;
    }
    
    table {
        width: 100%;
        display: block;
        overflow-x: auto;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix for scam items and warning banners on mobile */
    .scam-item {
        padding: 0.8rem;
    }
    
    .scam-item i {
        margin-right: 0.8rem;
    }
    
    .warning-banner {
        padding: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .warning-banner i {
        margin-bottom: 0.5rem;
    }
    
    /* Fix highlight element */
    .highlight {
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Fix guarantee badge overflow */
    .guarantee-badge {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .map-callout {
        height: 300px;
        margin: 2rem 0;
        border-radius: 0;
    }
    
    .map-overlay {
        padding: 1.5rem 1rem;
        width: 100%;
    }
    
    .map-callout h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .map-callout p {
        font-size: 1rem;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .map-cta {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Ensure proper wrapping of long text */
    p, h1, h2, h3, h4, li {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix for business section responsiveness */
    .section-container h3 {
        font-size: 1.3rem;
    }
    
    .section-container h3 i {
        margin-right: 8px;
    }
}

@media only screen and (max-width: 480px) {
    /* Extra small mobile devices */
    .letterhead {
        padding: 0.8rem 0.5rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .contact-container {
        gap: 0.5rem;
    }
    
    .contact-item {
        font-size: 0.8rem;
    }
    
    .contact-item i {
        font-size: 0.9rem;
    }
    
    .hero-image {
        height: 200px;
    }
    
    .hero-overlay h2 {
        font-size: 1.3rem;
    }
    
    .hero-overlay p {
        font-size: 1rem;
    }
    
    .map-callout {
        height: 280px;
    }
    
    .map-callout h2 {
        font-size: 1.3rem;
    }
    
    .map-callout p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

.info-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #179E47;
}
.info-box h4 {
    color: #179E47;
    margin-top: 0;
}
.business-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}
.business-option {
    flex: 1;
    min-width: 250px;
    background-color: white;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.business-option h4 {
    color: #179E47;
    margin-top: 0;
}
.step-complete {
    text-align: center;
    margin-top: 30px;
    font-weight: bold;
    color: #179E47;
}
.contact-footer {
    text-align: center;
    margin-top: 20px;
}
.contact-footer p:first-child {
    font-size: 1.1rem;
    font-weight: bold;
    color: #179E47;
}
.contact-footer p {
    font-size: 1.2rem;
    margin: 5px 0;
}
.contact-footer i {
    margin-right: 8px;
}
.copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
}
/* Special styling for the big guarantee badge */
.highlight .guarantee-badge {
    background-color: white;
    color: #179E47;
    margin: 15px auto;
    display: inline-block;
    padding: 10px 20px;
}
/* Special styling for centered no-hidden-fees badge */
section > .guarantee-badge {
    text-align: center;
    display: block;
    width: fit-content;
    margin: 1.5rem auto;
    padding: 12px 25px;
}