/* --- Base Variables & Reset --- */
:root {
    --primary-blue: #2A428A; 
    --secondary-blue: #6282BA; 
    --accent-orange: #F28C28; 
    --text-color: #333333;
    --text-light: #555555;
    --bg-color: #F4F7F6; 
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* --- Header & Navigation --- */
header {
    background-color: var(--white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E0E0E0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
}

.logo-img {
    max-height: 75px; 
    width: auto;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header-phone {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--text-light);
}

.header-phone a {
    color: var(--primary-blue);
    font-weight: 800;
    text-decoration: none;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

nav {
    margin-top: 0.5rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

nav a:hover {
    color: var(--accent-orange);
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1A2956 100%); 
    color: var(--white);
    padding: 7rem 5%;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    color: #E0E6F8; 
}

/* --- Buttons --- */
.button-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-orange);
    font-size: 1.1rem;
}

.button:hover {
    background-color: #D67A20;
    border-color: #D67A20;
    transform: translateY(-2px); 
}

.button-outline {
    background-color: transparent;
    border: 2px solid var(--white);
}

.button-outline:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

/* --- 3 Steps Section --- */
.steps-section {
    padding: 5rem 5%;
    background-color: var(--bg-color);
}

.steps-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 4rem;
}

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; 
}

.step-box {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 10px;
    border-top: 5px solid var(--accent-orange);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
    text-align: center;
    transition: transform 0.3s ease;
}

.step-box:hover {
    transform: translateY(-5px);
}

.step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-orange);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.step-box h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.step-box p {
    color: var(--text-light);
    font-size: 1rem;
}

/* --- Services Overview Section --- */
.services-section {
    padding: 5rem 5%;
    background-color: var(--white); 
    text-align: center;
    width: 100%; 
}

.services-section h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.services-section > p {
    color: var(--text-light);
    margin-bottom: 3.5rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-color); 
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 1px solid #EAEAEA;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border-bottom: 4px solid var(--primary-blue);
}

.service-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.service-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-link {
    display: inline-block;
    color: var(--accent-orange);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    margin-top: auto; 
}

.service-link:hover {
    text-decoration: underline;
}

/* --- Footer --- */
footer {
    background-color: #111;
    color: #888;
    padding: 3rem 5% 1.5rem 5%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-affiliation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.footer-social a {
    color: #888;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 28px;
    height: 28px;
}

.drp-logo {
    max-height: 90px; /* Adjusts the size of the DRP logo */
    width: auto;
    transition: transform 0.3s ease;
}

.drp-logo:hover {
    transform: scale(1.05);
}

.footer-affiliation p {
    font-size: 0.95rem;
    color: #AAA;
}

.footer-affiliation a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer-affiliation a:hover {
    color: #D67A20;
}

.footer-copyright {
    border-top: 1px solid #333;
    width: 100%;
    padding-top: 1.5rem;
    font-size: 0.85rem;
}
/* --- Pricing Page Specifics --- */
.pricing-intro {
    background-color: var(--white);
    padding: 4rem 5% 2rem;
    text-align: center;
}

.pricing-intro h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.pricing-intro p {
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    font-size: 1.1rem;
}

.guarantee-box {
    display: inline-block;
    background-color: #E8F0FE;
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid #C6D8F9;
    margin-top: 1rem;
}

.pricing-section {
    padding: 3rem 5% 5rem;
    background-color: var(--bg-color);
}

.pricing-section h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    border-top: 5px solid var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-top: 5px solid var(--accent-orange);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tier-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.price-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    min-height: 40px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1; /* Pushes the button to the bottom */
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #EAEAEA;
    font-size: 0.95rem;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: "✓";
    color: var(--accent-orange);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Specific styling for the add-ons table */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.addon-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-blue);
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}

.addon-card h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.addon-card .addon-price {
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.addon-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* --- Live USD Estimator Styles (UPDATED) --- */
.usd-est {
    display: inline-block;
    font-size: 1rem;
    color: var(--primary-blue);
    background-color: #E8F0FE; /* Soft blue background to make it pop */
    border: 1px solid #C6D8F9;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
    min-height: 24px;
}

/* Adjust the add-on card spacing slightly to fit the new text */
.addon-card .usd-est {
    font-size: 0.9rem;
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
    padding: 0.15rem 0.5rem;
}

/* --- Services Page Specifics --- */
.services-page-section {
    padding: 5rem 5%;
    background-color: var(--bg-color);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 4px solid var(--secondary-blue);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 1rem;
}

.service-detail-header svg {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.service-detail-header h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.service-detail-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-feature-list {
    list-style: none;
    margin-bottom: 0;
}

.service-feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
}

.service-feature-list li::before {
    content: "▹";
    color: var(--accent-orange);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

/* --- CTA Bottom Banner --- */
.bottom-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1A2956 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 5%;
}

.bottom-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

/* --- Modal (Popup) Styles for SSD List --- */
.modal-overlay {
    display: none; 
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal-content {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    max-height: 80vh; /* Prevents it from going off-screen */
    overflow-y: auto; /* Adds a scrollbar if the list is long */
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--accent-orange);
}

.modal-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.modal-content h4 {
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 0.25rem;
}

.modal-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Make the trigger link look clickable */
.modal-trigger {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px dotted var(--accent-orange);
}

/* --- Contact Page Specifics --- */
.contact-section {
    padding: 5rem 5%;
    background-color: var(--bg-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 850px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Stacks the columns on smaller screens */
    }
}

.contact-info-card, .contact-form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-top: 4px solid var(--primary-blue);
}

.contact-info-card h2, .contact-form-card h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-detail svg {
    color: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-detail p, .contact-detail a {
    color: var(--text-color);
    font-size: 1.05rem;
    text-decoration: none;
    line-height: 1.6;
}

.contact-detail a:hover {
    color: var(--accent-orange);
}

.contact-detail strong {
    display: block;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #D0D0D0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: #FAFAFA;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.1);
}

.form-submit {
    width: 100%;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    padding: 1rem;
}

.alert-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    font-weight: 600;
}

.alert-success { background-color: #D4EDDA; color: #155724; border: 1px solid #C3E6CB; }
.alert-error { background-color: #F8D7DA; color: #721C24; border: 1px solid #F5C6CB; }

/* --- Blog Page Specifics --- */
.blog-section {
    padding: 5rem 5%;
    background-color: var(--bg-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #EAEAEA;
    border-bottom: 3px solid var(--primary-blue);
}

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--accent-orange);
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-link {
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
    align-self: flex-start;
}

.blog-link:hover {
    color: var(--accent-orange);
    border-color: var(--accent-orange);
}

/* --- Single Article Page Specifics --- */
.article-section {
    padding: 4rem 5% 5rem 5%;
    background-color: var(--white);
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #EAEAEA;
}

.article-header h1 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-meta {
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Styling the raw WordPress Content */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2, .article-content h3 {
    color: var(--primary-blue);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.article-content a {
    color: var(--accent-orange);
    text-decoration: none;
    border-bottom: 1px dotted var(--accent-orange);
}

.article-content a:hover {
    border-bottom-style: solid;
}

.article-content ul, .article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

/* --- Navigation Dropdown --- */
nav {
    display: flex;
    align-items: center;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 1001;
    border-radius: 4px;
    border-top: 3px solid var(--accent-orange);
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: var(--primary-blue);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 0.95rem;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: var(--accent-orange);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Add a small arrow after "Resources" */
.dropdown > a::after {
    content: ' ▾';
    font-size: 0.8rem;
    vertical-align: middle;
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    margin-top: 10px;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* --- Final Mobile Responsive Logic --- */
@media (max-width: 850px) {
    header {
        padding: 0.8rem 3%; 
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap; /* Forces logo, phone, and menu to stay on one line */
        position: relative; /* Context for the absolute nav dropdown */
    }

    .logo-img {
        max-height: 42px; /* Shrunk logo to make room for phone/menu */
        width: auto;
        display: block;
    }

    .header-right {
        display: flex;
        flex-direction: row; 
        align-items: center;
        gap: 15px;
        flex-shrink: 0;
    }

    .header-phone {
        margin-bottom: 0; /* Align vertically with the button */
    }

    .header-phone a {
        font-size: 1.1rem; 
        white-space: nowrap; /* Prevents phone number from wrapping */
    }

    /* THE HAMBURGER BUTTON */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1010; /* Ensures button is above all other layers */
        position: relative;
        pointer-events: auto; /* Guarantees clickability */
    }

    .menu-toggle .bar {
        width: 100%;
        height: 3px;
        background-color: var(--primary-blue);
        border-radius: 10px;
        pointer-events: none; /* Let the click pass through to the button */
        transition: 0.3s;
    }

    /* THE NAV DRAWER */
    nav#nav-menu {
        display: none; /* Hidden by default */
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 5px 0; /* Slightly reduced top/bottom padding */
        border-bottom: 4px solid var(--accent-orange);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 1000;
        margin-top: 0;
    }

    /* THE ACTIVE STATE (Triggered by JS) */
    nav#nav-menu.active {
        display: flex !important;
    }

    nav#nav-menu a {
        margin: 0 !important;
        padding: 0.8rem 5%; /* Tightened from 1.2rem to 0.8rem */
        width: 100%;
        border-bottom: 1px solid #eee;
        display: block;
        font-size: 0.95rem; /* Slightly smaller for mobile scaling */
        text-align: left;
        text-transform: uppercase;
        font-weight: 600;
    }

    /* MOBILE DROPDOWNS */
    .dropdown-content {
        position: static;
        display: block; /* Shows sub-menu items by default on mobile */
        width: 100%;
        box-shadow: none;
        background-color: #fafafa;
        border-top: none;
        padding-left: 0; /* Controlled via child indentation */
    }

    .dropdown-content a {
        font-size: 0.85rem; /* Smaller sub-links */
        padding: 0.7rem 5% 0.7rem 10%; /* Heavily indented left (10%) to show hierarchy */
        color: #444; /* Slightly softer color for sub-items */
        text-transform: none; /* Sub-items look cleaner in normal case */
        border-bottom: 1px solid #f0f0f0;
    }

    .dropdown > a {
        background-color: #fff;
        color: var(--primary-blue);
    }

    .dropdown > a::after {
        display: none; /* Remove arrow on mobile for a cleaner look */
    }
}

/* Hide hamburger on desktop view */
@media (min-width: 851px) {
    .menu-toggle {
        display: none;
    }
}

/* --- Hero Section with Custom Background --- */
.hero {
    background: linear-gradient(135deg, rgba(26, 41, 86, 0.6) 0%, rgba(42, 66, 138, 0.4) 100%), 
                url('../images/hero-bg.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 8rem 5%;
    text-align: center;
    border-bottom: 4px solid var(--accent-orange); /* Adds a nice brand separator */
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5); /* Stronger shadow for the expert title */
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 5%;
    }
    .hero h1 {
        font-size: 2.4rem;
    }
}