/*************************************************************************************************/
/* General Styles */
/*************************************************************************************************/


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

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



h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    font-size: 32px;
    margin-top: 5px;
    margin-bottom: 10px;
    text-align: center;
}

h4 {
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 5px;
    text-align: center;
    color: #333;
}


a {
    color: #213a96;
    text-decoration: none;
}


/*************************************************************************************************/
/* Top Banner */
/*************************************************************************************************/

.top-banner {
    background-color: #000000;
    padding: 0px;
    border-bottom: 1px solid #333;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
}

.support-info {
    color: #ffffff;
}

.support-info span {
    color: #cccccc;
}

.support-info a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.support-info a:hover {
    color: #E2E8F0;
}

.system-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
}

.system-status a {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
    font-size: 11px;
}

.system-status a:hover {
    color: #34d399;
}

/*************************************************************************************************/
/* Header and Nav Bar  */
/*************************************************************************************************/

header {
    background-color: #292e40;
    padding: 0px;
    margin-bottom: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 0px 10px 0px;
    background-color: #292e40;
}

.nav-menu {
    color: #ffffff;
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #E2E8F0;
}

.nav-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
}

.logo-container {
    font-size: 20px;
    font-weight: 700;
    color: #E2E8F0;
    letter-spacing: -0.5px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-image {
    width: 240px;
    height: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    color: #CCC;
    font-weight: 400;
    line-height: 1.3;
    text-align: left;
}

.contact-info a {
    color: #CCC;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: #D1D5DB;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.tagline {
    font-size: 14px;
    color: #666;
}

.get-started {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.get-started:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #4338ca 0%, #2563eb 100%);
}

.get-started:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.get-started::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.1) 30%,
            transparent 50%,
            rgba(255, 255, 255, 0.1) 70%,
            rgba(255, 255, 255, 0.2) 100%);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.get-started:hover::after {
    opacity: 1;
}

.open-console {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, hsl(202, 90%, 43%) 0%, hsl(180, 17%, 77%) 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
}

/*************************************************************************************************/
/* Footer
/*************************************************************************************************/

.footer-divider {
    height: 1px;
    background-color: #ddd;
    max-width: 1200px;
    margin: 60px auto 0;
}

.site-footer {
    background-color: #f8f8f8;
    color: #333;
    padding: 40px 0 20px;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-column p {
    margin-bottom: 15px;
    color: #666;
}

.contact-link {
    color: #292e40;
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid rgba(41,46,64,0.3);
    transition: border-color 0.3s;
}

.contact-link:hover {
    border-color: #292e40;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #292e40;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    color: #777;
    font-size: 14px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
    
    .footer-column {
        width: 100%;
        margin-bottom: 30px;
    }
}

/*************************************************************************************************/
/* Media query for mobile devices */
/*************************************************************************************************/

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background-color: #E2E8F0;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}


@media screen and (max-width: 768px) {
    header {
        padding: 0;
    }

    .container, .header-container {
        padding: 0 10px;
        /* Remove container padding */
    }

    .container_hero {
        padding: 0px;
        /* Remove container padding */
    }

    .logo-container {
        padding-left: 0px;
        /* Added to maintain spacing just for logo */
    }

    .logo-link {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-image {
        width: 240px;
        height: 40px;
        margin-right: 0;
        margin-bottom: 5px;
    }

    .logo {
        font-size: 20px;
    }

    .tagline {
        font-size: 12px;
    }

    .nav-container {
        padding: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-right {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #292e40;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        transform: translateY(-200%);
        z-index: 1000;
    }

    .nav-right.active {
        transform: translateY(0);
    }

    .nav-menu {
        color: #ffffff;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        text-align: center;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .nav-buttons button {
        width: 100%;
    }

    .contact-info {
        font-size: 10px;
    }

    .banner-content {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .support-info, .system-status {
        font-size: 11px;
    }
}

