/* ===============================
   RESET & BASE
================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Times New Roman", Times, serif;
    font-size: 32px;
    color: #333;
    background-color: #e9f3fb; /* Light blue background */
}

p,
a {
    margin-bottom: 1.2em;
    line-height: 1.7;
    font-size: 28px;
}

blockquote {
    font-style: italic;
    font-weight: bold;
    border-left: 4px solid #ccc;
    padding-left: 1em;
    margin: 1.5em 0;
    font-size: 28px;
    color: #555;
}

li {
    font-size: 28px;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

section {
    margin-bottom: 48px;
}

.responsive {
    max-width: 100%;
    height: auto;
}

.promo-bar {
    background: #ff1493;
    color: #ffffff;
    text-align: center;
    padding: 14px 20px;
    border-radius: 10px 10px 10px 10px;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.5;
}
.promo-bar strong {
    background: #ffffff;
    color: #ff1493;
    padding: 2px 10px;
    border-radius: 4px;
    margin: 0 4px;
}
.promo-bar a {
    color: #ffffff;
    font-size: inherit;
    line-height: inherit;
    margin-bottom: 0;
    text-decoration: underline;
    font-weight: 700;
}

/* Reusable "signature" script style - used for the brand link in the header
   and the brand heading on the Privacy Policy page. */
.brand-link,
.brush-text {
    font-family: "Brush Script MT", "Brush Script Std", cursive;
}

.brush-text {
    font-size: 32px;
}

.brand-link {
    font-size: 44px; /* doubled for prominence in the header */
    color: #FF1493 !important;
    text-decoration: none;
}

    .brand-link:hover {
        color: #cc00cc;
    }

/* ===============================
   HEADER
================================ */
.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.brand-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 100px; /* doubled for prominence in the header */
    width: auto;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* ===============================
   TOP NAVIGATION
================================ */
.top-nav > ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.top-nav li {
    position: relative;
}

.top-nav a {
    text-decoration: none;
    font-size: 28px;
    font-weight: 500;
    color: #333;
    padding: 6px 0;
    position: relative;
    display: inline-block;
}

    /* Hover / Active underline */
    .top-nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 0;
        height: 2px;
        background: #0b3c5d;
        transition: width 0.3s ease;
    }

    .top-nav a:hover::after,
    .top-nav a.active::after {
        width: 100%;
    }

/* ===============================
   DROPDOWN MENU
   (single implementation, shared by every ".has-dropdown" > ".dropdown" pair)
================================ */
.has-dropdown {
    position: relative;
}

.dropdown {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    /* Hidden by default, faded in on hover */
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    display: block;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown.open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    display: block;
    margin-bottom: 0;
}

    .dropdown li a {
        display: block;
        padding: 10px 16px;
        font-size: 16px;
        line-height: 1.4;
        color: #333;
        white-space: nowrap;
        margin-bottom: 0;
    }

        .dropdown li a:hover {
            background: #f5f7fa;
            color: #0b3c5d;
        }

/* ===============================
   CTA BUTTON
================================ */
.nav-cta {
    margin-left: 20px;
}

.cta-btn {
    background: #0b3c5d;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease;
}

    .cta-btn:hover {
        background: #092c45;
    }

/* ===============================
   PAGE CONTAINER
================================ */
.page-container {
    font-size: 17px;
    line-height: 1.7;
    background: #ffffff;
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ===============================
   LOGO SCROLLING
================================ */
.logo-slider {
    overflow: hidden;
    background: #fff;
    padding: 30px 0;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
}

    .logo-track img {
        height: 150px;
        margin: 0 40px;
        opacity: 0.7;
    }

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===============================
   LEAD / DEMO-REQUEST PAGE
   (scoped to .lead-page so it doesn't affect the main site's body/typography)
================================ */
.lead-page {
    font-family: Arial, sans-serif;
    background: #f4f6f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.cta-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .cta-box h2 {
        margin-bottom: 10px;
        text-align: center;
    }

    .cta-box p {
        text-align: center;
        color: #666;
        margin-bottom: 20px;
        font-size: inherit;
    }

    .cta-box input {
        width: 100%;
        padding: 12px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
    }

    .cta-box button {
        width: 100%;
        padding: 12px;
        background: #0066ff;
        color: #fff;
        border: none;
        font-size: 16px;
        border-radius: 5px;
        cursor: pointer;
    }

        .cta-box button:hover {
            background: #004ecc;
        }

/* ===============================
   PRIVACY POLICY PAGE
   (scoped to .privacy-page so its h1/h2/p/li rules don't collide with the
   main site's typography rules above)
================================ */
.privacy-page {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f6f9;
}

.privacy-page .container {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.privacy-page h1 {
    font-size: 32px;
    text-align: center;
    color: #1f2d3d;
    margin-bottom: 10px;
}

.privacy-page .subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 16px;
}

.privacy-page h2 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 25px;
    border-left: 4px solid #007bff;
    padding-left: 10px;
}

.privacy-page p {
    color: #333;
    line-height: 1.7;
    font-size: 16px;
}

.privacy-page ul {
    padding-left: 20px;
    list-style: disc;
}

.privacy-page li {
    font-size: 16px;
    margin-bottom: 10px;
}

.privacy-page .contact {
    background: #f1f7ff;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
}

.privacy-page .footer {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 30px;
}

.privacy-page .phone {
    font-weight: bold;
    color: #007bff;
}
/* ===============================
   PAGE HEADING
   (title bar at the top of each page - bleeds to the edges of
   .page-container, which has 40px padding, hence the negative margins)
================================ */
.page-heading {
    background: #0b3c5d;
    color: #ffffff;
    text-align: center;
    padding: 10px 10px;
    margin: -20px -40px 40px -40px;
    border-radius: 10px 10px 10px 10px;
}

    .page-heading h1 {
        color: #ffffff;
        margin-bottom: 0;
    }
