/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    line-height: 1.6;
    color: #ffffff;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* Colors */
.text-green { color: #00ff00; }
.section-blue { background-color: #174a87; }
.section-dark-blue { background-color: #0b2242; }
.section-light { background-color: #f5f5f5; color: #333; }

/* Typography */
h1 { font-size: 28px; margin-bottom: 5px; font-weight: bold; }
h2 { font-size: 24px; margin-bottom: 5px; font-weight: bold; }
h3 { font-size: 20px; margin-bottom: 10px; font-weight: bold; }
p { font-size: 14px; margin-bottom: 20px; }

.divider {
    color: #00ff00;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-size: 12px;
}

/* Button Styling */
.btn {
    display: inline-block;
    background-color: #ffb400;
    color: #000;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
    border: none;
    cursor: pointer;
}

.btn:hover { background-color: #e5a200; }

/* Feature Blocks (Section 3) */
.feature-block {
    margin-bottom: 25px;
}

.feature-block p {
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-title {
    font-size: 26px;
    margin-bottom: 30px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    border: 1px solid #ddd;
    background-color: #fff;
}

.accordion {
    background-color: #fff;
    color: #333;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.accordion:last-of-type { border-bottom: none; }

.accordion:after {
    content: '\002B'; /* Plus sign */
    font-weight: bold;
    float: left;
    margin-right: 10px;
}

.active:after {
    content: "\2212"; /* Minus sign */
}

.panel {
    padding: 15px 25px;
    background-color: white;
    display: none;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.panel p {
    margin: 0;
    color: #666;
}

.call-now-btn { margin-top: 40px; }

/* Footer */
.site-footer {
    background-color: #174a87;
    color: #fff;
    font-size: 12px;
}

.site-footer p { max-width: 800px; margin: 0 auto 20px auto; }

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    color: #00a8ff;
    text-decoration: none;
}

.footer-links a:hover { text-decoration: underline; }

/* Mobile Responsiveness */
@media (max-width: 600px) {
    h1 { font-size: 22px; }
    h2 { font-size: 20px; }
    h3 { font-size: 18px; }
    .container { padding: 30px 15px; }
    .divider { letter-spacing: 1px; }
}
