/* Basic Reset & Body Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: #0c3945;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

header .logo img {
    display: block; /* Ensure the image is treated as a block element */
    max-width: 150px; /* Adjust as needed for larger screens */
    height: auto;
    padding: 10px;
}

/* Navigation */
nav ul {
    list-style: none;
    padding: 0;
    text-align: left; /* Left-align text for better mobile UX */
    background-color: #0c3945;
    margin: 0;
    /* Mobile styles - hidden by default */
    position: fixed;
    top: 0; /* Start from the very top to eliminate gap */
    right: -100%; /* Start off-screen to the right */
    width: auto; /* Auto width based on content */
    min-width: 250px; /* Minimum width for readability */
    height: 100vh; /* Full viewport height */
    flex-direction: column;
    transition: right 0.3s ease-in-out; /* Animate right property instead of left */
    z-index: 1000;
    overflow-y: auto; /* Enable scrolling for long menus */
    margin-top: 0;
    padding: 80px 0 20px 0; /* Add top padding to account for header height */
}

nav ul li {
    display: block; /* Stack items vertically */
    position: relative;
    width: 100%; /* Full width of container */
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    width: 100%; /* Full width for touch targets */
    box-sizing: border-box;
}

nav ul li a:hover {
    background-color: #1a4d5a;
}

nav ul li a.active {
    background-color: #c0e064;
    color: #0c3945;
    font-weight: bold;
}

/* Hero Section */
#hero {
    background-image: url('images/bg-faded.jpg'); /* Placeholder, will replace with actual image */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

#hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.button {
    background-color: #c0e064;
    color: #0c3945;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-block;
    font-size: 1em;
    text-align: center;
}

.button:hover {
    background-color: #aacc55;
}

@media (max-width: 768px) {
    .button {
        padding: 12px 20px;
        font-size: 0.9em;
        width: auto;
        max-width: 100%;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .button {
        padding: 12px 15px;
        font-size: 0.85em;
        width: 100%;
        box-sizing: border-box;
    }
}

/* Main Content Sections */
section {
    padding: 60px 20px;
    border-bottom: 1px solid #eee;
}

section:nth-child(even) {
    background-color: #e9e9e9;
}

section h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #0c3945;
}

section p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

.service-item {
    background-color: white;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
}

.service-item h3 {
    background-color: #0c3945;
    color: white;
    font-size: 1.5em;
    margin: 0;
    padding: 25px 20px;
    font-weight: 600;
}

.service-item p {
    padding: 25px 30px;
}

/* About Hero Section */
#about-hero {
    background: linear-gradient(135deg, #0c3945 0%, #1a5a6a 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

#about-hero h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#about-hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

@media (max-width: 767px) {
    #about-hero h1 {
        font-size: 2em;
    }
    #about-hero p {
        font-size: 1.1em;
    }
}

/* About Us Preview */
#about-us-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

#about-us-preview .about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

#about-us-preview .about-content img {
    max-width: 100%;
    width: 400px; /* Fixed width for the about image */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#about-us-preview .about-content div {
    max-width: 700px;
}

#about-us-preview h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Testimonials Preview */
#testimonials-preview .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-item img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-item cite {
    font-weight: bold;
    color: #0c3945;
}

/* FAQ Preview */
#faq-preview .faq-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#faq-preview .faq-item h3 {
    color: #0c3945;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3em;
}

/* Contact CTA */
#contact-cta {
    text-align: center;
    background-color: #0c3945;
    color: white;
    padding: 80px 20px;
}

#contact-cta h2 {
    color: white;
}

#contact-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 50px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-cta {
    background: rgba(192, 224, 100, 0.15);
    padding: 25px 40px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.footer-cta p {
    margin: 0 0 15px;
    font-size: 1.1em;
}

.footer-cta .button {
    display: inline-block;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

footer ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
}

footer ul li a:hover {
    text-decoration: underline;
}

.about-content-flex {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.about-content-flex img {
    max-width: 100%;
    width: 450px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-content-flex div {
    max-width: 700px;
    text-align: center;
}

.about-content-flex h2,
.about-content-flex h3 {
    text-align: center;
    color: #0c3945;
    margin-bottom: 20px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

.expertise-item {
    background-color: white;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
}

.expertise-item h3 {
    background-color: #0c3945;
    color: white;
    font-size: 1.5em;
    margin: 0;
    padding: 25px 20px;
    font-weight: 600;
}

.expertise-item p {
    padding: 25px 30px;
}

#about-contact-cta {
    text-align: center;
    background-color: #0c3945;
    color: white;
    padding: 80px 20px;
}

#about-contact-cta h2 {
    color: white;
}

#about-contact-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (min-width: 1024px) {
    header nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        position: static; /* Reset position for desktop */
    }

    header .logo {
        padding: 0;
    }

    nav ul {
        position: static; /* Reset position for desktop */
        left: auto;
        right: auto; /* Reset right positioning */
        top: auto;
        width: auto;
        height: auto;
        flex-direction: row; /* Horizontal layout on desktop */
        background-color: transparent; /* Reset background */
        min-width: auto; /* Reset min-width */
        padding: 0; /* Reset padding */
        overflow: visible; /* Reset overflow */
    }
    
    nav ul li {
        display: inline-block; /* Horizontal layout on desktop */
        width: auto; /* Reset width */
    }
    
    nav ul li a {
        width: auto; /* Reset width */
        box-sizing: content-box; /* Reset box-sizing */
    }

    .hamburger-icon {
        display: none;
    }

    #about-us-preview .about-content {
        flex-direction: row;
        text-align: left;
    }

    #about-us-preview .about-content div {
        text-align: left;
    }

    .about-content-flex {
        flex-direction: row;
        text-align: left;
    }

    .about-content-flex div {
        text-align: left;
    }

    .about-content-flex h2,
    .about-content-flex h3 {
        text-align: left;
    }
}

@media (max-width: 1023px) {
    header {
        padding: 1rem 20px; /* Adjusted padding for mobile header */
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    header .logo {
        display: flex;
        align-items: center;
        padding: 0;
    }
    header .logo img {
        width: auto;
        height: auto;
        max-width: 100px;
    }
    header nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 20px;
    }
    nav ul {
        flex-direction: column;
        background-color: #0c3945;
    }
    nav ul li a {
        padding: 15px 20px; /* Adjust padding for mobile links */
        border-bottom: 1px solid #1a4d5a; /* Separator for mobile links */
    }
    nav ul li:last-child a {
        border-bottom: none;
    }
    .hamburger-icon {
        display: flex !important; /* Force show hamburger on mobile with !important */
        /* Remove specific positioning to allow flexbox to handle it */
    }
    #hero h1 {
        font-size: 2.2em;
    }
    #hero p {
        font-size: 1em;
    }
    section h2 {
        font-size: 1.8em;
    }
    .service-item, .testimonial-item {
        padding: 20px;
    }
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
    footer ul {
        flex-direction: column;
        gap: 10px;
    }
} 

#insurance-hero {
    background: linear-gradient(135deg, #0c3945 0%, #1a5a6a 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

#insurance-hero h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#insurance-hero p {
    font-size: 1.3em;
    opacity: 0.9;
}

.insurance-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.insurance-logos img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.insurance-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

#insurance-info ol, #insurance-info ul {
    max-width: 800px;
    margin: 20px auto;
    text-align: left;
    list-style-position: inside;
}

#insurance-info li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

#insurance-contact-cta {
    text-align: center;
    background-color: #0c3945;
    color: white;
    padding: 80px 20px;
}

#insurance-contact-cta h2 {
    color: white;
}

#insurance-contact-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    #insurance-hero h1 {
        font-size: 2em;
    }
    #insurance-hero p {
        font-size: 1.1em;
    }
} 

#programs-hero {
    background: linear-gradient(135deg, #0c3945 0%, #1a5a6a 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

#programs-hero h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#programs-hero p {
    font-size: 1.3em;
    opacity: 0.9;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .program-grid {
        grid-template-columns: 1fr;
    }
}

.program-card {
    background-color: white;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.program-card h3 {
    background-color: #0c3945;
    color: white;
    font-size: 1.8em;
    margin: 0;
    padding: 25px 20px;
    font-weight: 600;
}

.program-card p {
    font-size: 1.1em;
    padding: 20px 30px 0;
    margin: 0;
}

.program-card ul {
    list-style: none;
    padding: 15px 30px;
    margin: 0;
    text-align: left;
}

.program-card ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.program-card ul li::before {
    content: '✓';
    color: #c0e064;
    position: absolute;
    left: 0;
}

.program-card .button {
    margin: 20px 30px 30px;
}

#programs-contact-cta {
    text-align: center;
    background-color: #0c3945;
    color: white;
    padding: 80px 20px;
}

#programs-contact-cta h2 {
    color: white;
}

#programs-contact-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    #programs-hero h1 {
        font-size: 2em;
    }
    #programs-hero p {
        font-size: 1.1em;
    }
} 

#contact-hero {
    background-image: url('images/contact.jpg'); /* Example image, adjust as needed */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

#contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

#contact-hero h1,
#contact-hero p {
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#contact-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

#contact-hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-details,
.contact-form-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    color: #0c3945;
    margin-bottom: 20px;
    font-size: 1.5em;
    font-weight: 600;
}

.contact-form-container p {
    margin: 0 0 25px 0;
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
}

.contact-details h2,
.contact-details h3 {
    color: #0c3945;
    margin-bottom: 20px;
}

.info-block {
    margin-bottom: 20px;
}

.info-block p a {
    color: #0c3945;
    text-decoration: none;
}

.info-block p a:hover {
    text-decoration: underline;
}

.contact-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.95em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0c3945;
    box-shadow: 0 0 0 2px rgba(12, 57, 69, 0.1);
    background-color: white;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.cancel-btn {
    background-color: transparent;
    color: #666;
    border: 1px solid #d0d0d0;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.2s;
}

.cancel-btn:hover {
    background-color: #f5f5f5;
    border-color: #999;
}

.submit-btn {
    background-color: #0c3945;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: #0a2f3a;
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Form Messages */
.form-message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.95em;
    line-height: 1.4;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.map-placeholder {
    background-color: #e0e0e0;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
        text-align: left;
    }
}

@media (max-width: 767px) {
    #contact-hero h1 {
        font-size: 2.2em;
    }
    #contact-hero p {
        font-size: 1em;
    }
} 

#faq-hero {
    background-image: url('images/testinomials/lindsey.jpg'); /* Example image, adjust as needed */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

#faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

#faq-hero h1,
#faq-hero p {
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#faq-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

#faq-hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
}

#faq-content .container {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h3 {
    color: #0c3945;
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #c0e064;
    padding-bottom: 10px;
}

.faq-item {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.faq-item h4 {
    color: #333;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer; /* To indicate it's clickable for accordion-like behavior if JS were used */
}

.faq-item p {
    font-size: 1em;
    line-height: 1.6;
    margin-top: 0;
    /* For accordion-like behavior, this would be hidden by default */
}

#faq-contact-cta {
    text-align: center;
    background-color: #0c3945;
    color: white;
    padding: 80px 20px;
}

#faq-contact-cta h2 {
    color: white;
}

#faq-contact-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    #faq-hero h1 {
        font-size: 2.2em;
    }
    #faq-hero p {
        font-size: 1em;
    }
    .faq-category h3 {
        font-size: 1.5em;
    }
    .faq-item h4 {
        font-size: 1.1em;
    }
} 

#praise-hero {
    background-image: url('images/testinomials/denys.jpg'); /* Example image, adjust as needed */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

#praise-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

#praise-hero h1,
#praise-hero p {
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#praise-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

#praise-hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.testimonial-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-card img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #c0e064;
}

.testimonial-card h3 {
    color: #0c3945;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 0;
}

#praise-contact-cta {
    text-align: center;
    background-color: #0c3945;
    color: white;
    padding: 80px 20px;
}

#praise-contact-cta h2 {
    color: white;
}

#praise-contact-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    #praise-hero h1 {
        font-size: 2.2em;
    }
    #praise-hero p {
        font-size: 1em;
    }
} 



#not-found-hero {
    background-color: #f8f8f8;
    text-align: center;
    padding: 100px 20px;
}

#not-found-hero h1 {
    font-size: 3em;
    color: #cc0000; /* Error color - keeping red for error */
    margin-bottom: 20px;
}

#not-found-hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
}

#helpful-links h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #0c3945;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.link-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.link-card h3 {
    color: #0c3945;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.link-card p {
    font-size: 1em;
    flex-grow: 1;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    #not-found-hero h1 {
        font-size: 2.5em;
    }
    #not-found-hero p {
        font-size: 1.1em;
    }
    #helpful-links h2 {
        font-size: 1.8em;
    }
}

#individual-packages .pricing-card.featured {
    border: 3px solid #c0e064; /* Highlight color */
    box-shadow: 0 4px 10px rgba(192, 224, 100, 0.2); /* Matching shadow */
}

#individual-packages .pricing-card h3 {
    color: #0c3945;
    font-size: 1.8em;
    margin-bottom: 15px;
}

#individual-packages .pricing-card .price {
    font-size: 2.8em;
    font-weight: bold;
    color: #0c3945; /* Primary color for price */
    margin-bottom: 20px;
}

#insurance-mention h2 {
    font-size: 2em;
    color: #0c3945;
    margin-bottom: 20px;
}

#insurance-mention p a {
    color: #c0e064;
    text-decoration: underline;
    font-weight: bold;
}

#insurance-mention p a:hover {
    color: #aacc55;
}

#packages-contact-cta {
    text-align: center;
    background-color: #0c3945;
    color: white;
    padding: 80px 20px;
}

#lets-connect-cta {
    background-color: #0c3945;
    color: white;
}

#connect-options h2 {
    color: #0c3945;
}

.connect-card h3 {
    color: #0c3945;
}

#shop-categories .category-card h3 {
    color: #0c3945;
}

#featured-products .product-card h3 {
    color: #0c3945;
}

#shop-contact-cta {
    background-color: #0c3945;
    color: white;
}

#program-video-pricing .video-program-card h3 {
    color: #0c3945;
}

#video-pricing-contact-cta {
    background-color: #0c3945;
    color: white;
}

/* Hamburger Menu */
#menu-toggle {
    display: none;
}

.hamburger-icon {
    display: none; /* Hidden by default, shown on mobile */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    padding: 5px;
    /* Remove absolute positioning to work with flexbox */
    z-index: 1001;
}

.hamburger-icon .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #c0e064;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Mobile Menu Toggle */
#menu-toggle:checked ~ ul {
    right: 0 !important; /* Use ~ to select any ul that follows the checkbox, and force with !important */
    background-color: #0c3945 !important; /* Ensure background is visible */
    box-shadow: 2px 0 10px rgba(0,0,0,0.3); /* Add shadow for better visibility */
}

/* Styles for open hamburger icon */
#menu-toggle:checked + .hamburger-icon .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

#menu-toggle:checked + .hamburger-icon .bar:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked + .hamburger-icon .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Google Reviews Section */
#google-reviews {
    background-color: #f8f8f8;
    padding: 60px 0;
}

#google-reviews .container {
    text-align: center;
}

#google-reviews h2 {
    font-size: 2.5em;
    color: #0c3945;
    margin-bottom: 10px;
}

#google-reviews p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    font-size: 1.1em;
    color: #0c3945;
}

.reviews-count {
    font-weight: 500;
}

.average-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-stars {
    color: #ffd700;
    font-size: 1.2em;
    letter-spacing: 2px;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* New Google Review Card Styles - Matching the image design */
.google-review-card {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.google-review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.reviewer-avatar {
    flex-shrink: 0;
}

.profile-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #54a0ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.reviewer-info {
    flex: 1;
    text-align: left;
}

.reviewer-name {
    font-weight: bold;
    color: #0c3945;
    font-size: 1.1em;
    margin-bottom: 4px;
    text-align: left;
}

.review-time {
    color: #666;
    font-size: 0.9em;
}

.review-stars {
    color: #ffd700;
    font-size: 1.2em;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.review-text {
    line-height: 1.6;
    color: #333;
    margin: 0 0 20px 0;
    font-size: 0.95em;
}

.expand-link {
    color: #0c3945;
    cursor: pointer;
    text-decoration: underline;
    font-weight: bold;
    margin-left: 8px;
}

.expand-link:hover {
    color: #0056b3;
}

.review-source {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.google-icon {
    height: 40px;
    opacity: 0.7;
}

.clickable-review-element {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.clickable-review-element:hover {
    opacity: 0.8;
}

/* Loading and Error States */
.loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

.error {
    text-align: center;
    padding: 40px;
    color: #dc3545;
    font-weight: 500;
}

/* Legacy Google Review Styles (keeping for backward compatibility) */
.google-review {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #c0e064;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.reviewer-name {
    font-weight: bold;
    color: #0c3945;
    font-size: 1.1em;
}

.review-stars {
    color: #ffd700;
    font-size: 1.2em;
    letter-spacing: 2px;
}

.review-time {
    color: #666;
    font-size: 0.9em;
}

.review-text {
    font-style: italic;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Testimonial Filters */
#testimonial-filters {
    background-color: white;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.testimonial-filter {
    background-color: #f0f0f0;
    border: 2px solid #ddd;
    color: #333;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1em;
    font-weight: 500;
}

.testimonial-filter:hover {
    background-color: #e0e0e0;
    border-color: #0c3945;
}

.testimonial-filter.active {
    background-color: #0c3945;
    color: white;
    border-color: #0c3945;
}

.testimonial-filter.active:hover {
    background-color: #1a4d5a;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .google-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-filter {
        width: 200px;
        text-align: center;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .google-review-card {
        padding: 20px;
    }
    
    .reviewer-avatar {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .google-review {
        padding: 20px;
    }
    
    .google-review-card {
        padding: 18px;
    }
    
    .testimonial-filter {
        width: 100%;
        max-width: 250px;
    }
    
    .avatar-initials {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .profile-photo {
        width: 40px;
        height: 40px;
    }
}

/* Test Page Styles */
#test-hero {
    background-color: #0c3945;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

#test-hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#test-hero p {
    font-size: 1.2em;
    margin-bottom: 0;
}

#testimonials-test {
    padding: 60px 0;
    background-color: #f8f8f8;
}

/* Content Link Styles - Only for text content, not navigation */
.article-content a,
.article-cta p a,
.article-card-content a,
section p a,
.faq-item a,
.testimonial-item a,
.service-item a,
.program-card a:not(.button),
.contact-details a,
footer p a,
.section-intro a,
.highlight-text a,
.alt-item a:not(.button),
.help-item a,
.benefit-item a,
.area-card a,
.step-item a,
.condition-item a,
.coverage-item a {
    color: #0c3945;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.article-content a:visited,
.article-cta p a:visited,
.article-card-content a:visited,
section p a:visited,
.faq-item a:visited,
.contact-details a:visited,
.help-item a:visited,
.benefit-item a:visited,
.area-card a:visited,
.condition-item a:visited {
    color: #0a2f3a;
}

.article-content a:hover,
.article-cta p a:hover,
.article-card-content a:hover,
section p a:hover,
.faq-item a:hover,
.testimonial-item a:hover,
.service-item a:hover,
.program-card a:not(.button):hover,
.contact-details a:hover,
footer p a:hover,
.section-intro a:hover,
.highlight-text a:hover,
.alt-item a:not(.button):hover,
.help-item a:hover,
.benefit-item a:hover,
.area-card a:hover,
.step-item a:hover,
.condition-item a:hover,
.coverage-item a:hover {
    color: #1a5a6a;
}

/* Links on Dark Backgrounds - Use lime green accent color for visibility */
#contact-cta p a,
#mid-page-cta p a,
#mid-cta p a,
#articles-cta p a,
#about-contact-cta p a,
#insurance-contact-cta p a,
#programs-contact-cta p a,
#packages-contact-cta p a,
#faq-contact-cta p a,
#praise-contact-cta p a,
#shop-contact-cta p a,
#video-pricing-contact-cta p a,
#lets-connect-cta p a {
    color: #c0e064;
    text-decoration: underline;
    font-weight: 500;
}

#contact-cta p a:visited,
#mid-page-cta p a:visited,
#mid-cta p a:visited,
#articles-cta p a:visited,
#about-contact-cta p a:visited,
#insurance-contact-cta p a:visited,
#programs-contact-cta p a:visited {
    color: #d4f080;
}

#contact-cta p a:hover,
#mid-page-cta p a:hover,
#mid-cta p a:hover,
#articles-cta p a:hover,
#about-contact-cta p a:hover,
#insurance-contact-cta p a:hover,
#programs-contact-cta p a:hover,
#packages-contact-cta p a:hover,
#faq-contact-cta p a:hover,
#praise-contact-cta p a:hover,
#shop-contact-cta p a:hover,
#video-pricing-contact-cta p a:hover,
#lets-connect-cta p a:hover {
    color: #aacc55;
    text-decoration: underline;
}

/* ================================
   BLOG STYLES
   ================================ */

/* Blog Hero */
#articles-hero {
    background: linear-gradient(135deg, #0c3945 0%, #1a5a6a 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

#articles-hero h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#articles-hero p {
    font-size: 1.3em;
    opacity: 0.9;
}

/* Blog Intro */
#articles-intro {
    background-color: #f8f8f8;
    padding: 50px 20px;
    text-align: center;
}

#articles-intro .section-intro {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.15em;
    line-height: 1.7;
}

/* Blog Posts List */
#articles-posts {
    padding: 60px 20px;
}

#articles-posts h2 {
    text-align: center;
    color: #0c3945;
    margin-bottom: 40px;
}

.article-list {
    max-width: 900px;
    margin: 0 auto;
}

.article-card-full {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.article-card-content {
    padding: 35px;
}

.article-category {
    display: inline-block;
    background: #c0e064;
    color: #0c3945;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.article-card-full h3 {
    margin: 0 0 15px;
    font-size: 1.6em;
    line-height: 1.3;
}

.article-card-full h3 a {
    color: #0c3945;
    text-decoration: none;
    transition: color 0.2s;
}

.article-card-full h3 a:hover {
    color: #1a5a6a;
}

.article-card-full p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    color: #0c3945;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.read-more:hover {
    color: #c0e064;
}

/* Blog CTA Section */
#articles-cta {
    background: linear-gradient(135deg, #0c3945 0%, #1a5a6a 100%);
    color: white;
    text-align: center;
    padding: 70px 20px;
}

#articles-cta h2 {
    color: white;
    margin-bottom: 20px;
}

#articles-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.15em;
    opacity: 0.95;
}

/* Blog Article Styles */
.article-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.article-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    padding: 80px 30px;
    background-color: #0c3945;
    border-radius: 8px;
    position: relative;
}

.article-header h1 {
    font-size: 2.4em;
    color: white;
    line-height: 1.3;
    margin: 15px 0 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.article-meta {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1em;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.article-content {
    font-size: 1.1em;
    line-height: 1.8;
}

.article-intro {
    font-size: 1.2em;
    color: #444;
    border-left: 4px solid #c0e064;
    padding-left: 25px;
    margin-bottom: 35px;
}

.article-content h2 {
    color: #0c3945;
    font-size: 1.6em;
    margin-top: 45px;
    margin-bottom: 20px;
    text-align: left;
}

.article-content p {
    margin-bottom: 20px;
    color: #333;
}

.article-content em {
    font-style: italic;
}

.article-cta {
    background: #f0f7f0;
    border: 2px solid #c0e064;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
}

.article-cta h3 {
    color: #0c3945;
    margin-bottom: 15px;
}

.article-cta p {
    margin-bottom: 25px;
    color: #555;
}

/* Blog Grid on Home Page */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.article-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
    margin-bottom: 30px;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-card h3 {
    margin: 0 0 15px;
    font-size: 1.25em;
    line-height: 1.4;
}

.article-card h3 a {
    color: #0c3945;
    text-decoration: none;
}

.article-card h3 a:hover {
    color: #1a5a6a;
}

.article-card p {
    color: #555;
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 15px;
}

#articles-preview {
    padding: 60px 20px;
    background-color: #f0f7f0;
}

#articles-preview h2 {
    text-align: center;
    color: #0c3945;
    margin-bottom: 40px;
}

/* ================================
   LANDING PAGE STYLES
   ================================ */

/* Landing Hero */
#landing-hero {
    background-image: url('images/bg-faded.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
}

#landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(12, 57, 69, 0.9) 0%, rgba(26, 90, 106, 0.85) 100%);
}

#landing-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

#landing-hero h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.5em;
    color: #c0e064;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Free Services Section */
#free-services {
    padding: 70px 20px;
    text-align: center;
    background-color: #f0f7f0;
}

#free-services h2 {
    color: #0c3945;
    margin-bottom: 20px;
}

/* Why Different Section */
#why-different {
    padding: 70px 20px;
}

#why-different h2 {
    text-align: center;
    color: #0c3945;
    margin-bottom: 20px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 40px auto 0;
}

.comparison-item {
    padding: 35px;
    border-radius: 12px;
}

.comparison-item.our-way {
    background: #f0f7f0;
    border: 2px solid #c0e064;
}

.comparison-item.other-way {
    background: #fff5f5;
    border: 2px solid #ffcccc;
}

.comparison-item h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.4em;
}

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

.comparison-item ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* How It Works Section */
#how-it-works {
    padding: 70px 20px;
    background-color: #f8f8f8;
}

#how-it-works h2 {
    text-align: center;
    color: #0c3945;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #c0e064;
    color: #0c3945;
    font-size: 1.5em;
    font-weight: bold;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step-item h3 {
    color: #0c3945;
    margin-bottom: 15px;
}

/* Areas Grid */
#collin-county-areas {
    padding: 70px 20px;
}

#collin-county-areas h2 {
    text-align: center;
    color: #0c3945;
    margin-bottom: 20px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 40px auto;
}

.area-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #c0e064;
}

.area-card h3 {
    color: #0c3945;
    margin-bottom: 10px;
}

.section-note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 30px;
}

/* Mid Page CTA */
#mid-page-cta {
    background: linear-gradient(135deg, #0c3945 0%, #1a5a6a 100%);
    color: white;
    text-align: center;
    padding: 70px 20px;
}

#mid-page-cta h2 {
    color: white;
    margin-bottom: 20px;
}

/* Better Than Alternatives */
#better-than-alternatives {
    padding: 70px 20px;
    background-color: #f8f8f8;
}

#better-than-alternatives h2 {
    text-align: center;
    color: #0c3945;
    margin-bottom: 50px;
}

.alternative-comparison {
    max-width: 900px;
    margin: 0 auto;
}

.alt-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.alt-item h3 {
    color: #0c3945;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.alt-item p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.alt-item a {
    color: #0c3945;
    font-weight: 600;
}

/* FAQ on Landing Page */
#faq-collin {
    padding: 70px 20px;
}

#faq-collin h2 {
    text-align: center;
    color: #0c3945;
    margin-bottom: 40px;
}

#faq-collin .faq-item {
    max-width: 800px;
    margin: 0 auto 25px;
}

/* ================================
   HOME PAGE ENHANCEMENTS
   ================================ */

/* Insurance Highlight Section */
#insurance-highlight {
    padding: 70px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f0f7f0 0%, #e8f5e9 100%);
}

#insurance-highlight h2 {
    color: #0c3945;
    margin-bottom: 20px;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.15em;
    line-height: 1.7;
    color: #444;
}

/* Why Us Section */
#why-us {
    padding: 70px 20px;
}

#why-us h2 {
    text-align: center;
    color: #0c3945;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.benefit-item h3 {
    color: #0c3945;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #555;
    line-height: 1.6;
}

/* Locations Section */
#locations {
    padding: 70px 20px;
    background-color: #f8f8f8;
}

#locations h2 {
    text-align: center;
    color: #0c3945;
    margin-bottom: 20px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 700px;
    margin: 40px auto 0;
}

.location-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.location-item h3 {
    color: #0c3945;
    margin-bottom: 15px;
    text-align: center;
}

.location-item ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.location-item ul li {
    padding: 8px 0;
    color: #555;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

.section-cta p {
    margin-top: 20px;
    padding: 15px 20px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section-cta {
        padding: 0 15px;
    }
    
    .section-cta p {
        font-size: 14px;
        padding: 12px 15px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .section-cta {
        padding: 0 10px;
    }
    
    .section-cta p {
        font-size: 13px;
        padding: 10px 12px;
        border-left-width: 3px;
    }
}

/* ================================
   ENHANCED INSURANCE PAGE STYLES
   ================================ */

.highlight-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    border: 3px solid #c0e064;
}

.highlight-box h2 {
    color: #0c3945;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 1.2em;
    line-height: 1.7;
}

.insurance-logos.large {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.insurance-logo-item {
    text-align: center;
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.insurance-logo-item img {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.insurance-logo-item h3 {
    color: #0c3945;
    margin-bottom: 5px;
}

.insurance-logo-item p {
    color: #28a745;
    font-weight: 600;
}

#insurance-highlight-main {
    padding: 70px 20px;
    background: linear-gradient(135deg, #f0f7f0 0%, #e8f5e9 100%);
    text-align: center;
}

#why-free {
    padding: 70px 20px;
}

#why-free h2 {
    text-align: center;
    color: #0c3945;
    margin-bottom: 20px;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
}

.condition-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.condition-item h3 {
    color: #0c3945;
    margin-bottom: 10px;
}

#coverage-details {
    padding: 70px 20px;
    background-color: #f8f8f8;
}

#coverage-details h2 {
    text-align: center;
    color: #0c3945;
    margin-bottom: 20px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.coverage-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.coverage-item h3 {
    color: #28a745;
    margin-bottom: 10px;
}

#mid-cta {
    background: linear-gradient(135deg, #0c3945 0%, #1a5a6a 100%);
    color: white;
    text-align: center;
    padding: 70px 20px;
}

#mid-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.steps-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
}

.steps-simple .step {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.steps-simple .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #c0e064;
    color: #0c3945;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 50%;
    margin-bottom: 15px;
}

.steps-simple .step h3 {
    color: #0c3945;
    margin-bottom: 10px;
}

#other-insurance {
    padding: 70px 20px;
    background-color: #f8f8f8;
}

#other-insurance h2, #other-insurance h3 {
    text-align: center;
    color: #0c3945;
    margin-bottom: 20px;
}

/* ================================
   RESPONSIVE ADJUSTMENTS
   ================================ */

@media (max-width: 767px) {
    #landing-hero h1,
    #articles-hero h1 {
        font-size: 2em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .article-header {
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .article-header h1 {
        font-size: 1.6em;
        margin: 15px 0;
    }
    
    .article-category {
        margin-bottom: 15px;
    }
    
    .article-meta {
        font-size: 0.9em;
        margin-top: 10px;
    }
    
    .article-card-content {
        padding: 25px;
    }
    
    .highlight-box {
        padding: 25px;
    }
    
    .insurance-logos.large {
        gap: 30px;
    }
    
    .insurance-logo-item {
        padding: 20px;
    }
    
    .comparison-grid,
    .steps-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }
}