/* Navbar */
.create-your-goe-navbar {
    background-color: #ffffff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.create-your-goe-navbar .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.create-your-goe-navbar .navbar-logo a {
    text-decoration: none;
}

.create-your-goe-navbar .navbar-logo img {
    height: 50px;
}

.create-your-goe-navbar .navbar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
    align-items: center;
}

.create-your-goe-navbar .navbar-menu > li {
    position: relative;
}

.create-your-goe-navbar .navbar-menu > li > a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.create-your-goe-navbar .navbar-chapters-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.create-your-goe-navbar .navbar-dropdown-arrow {
    font-size: 0.7em;
    margin-left: 4px;
}

.create-your-goe-navbar .navbar-logo a {
    text-decoration: none;
}

.create-your-goe-navbar .navbar-logo-fallback {
    text-decoration: none;
    color: #274933;
    font-weight: bold;
    font-size: 1.5rem;
}

.create-your-goe-navbar .navbar-dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    display: none;
    flex-direction: column;
    gap: 0;
    z-index: 9999;
    border-radius: 4px;
    overflow: hidden;
}

.create-your-goe-navbar .navbar-dropdown li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 12px 16px;
    display: block;
    white-space: nowrap;
}

.create-your-goe-navbar .navbar-menu > li:hover .navbar-dropdown {
    display: flex !important;
}

.create-your-goe-navbar .navbar-dropdown li a:hover {
    background-color: #f5f5f5;
}

.create-your-goe-navbar .navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.create-your-goe-navbar .navbar-toggle .hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.create-your-goe-navbar .navbar-toggle.is-active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.create-your-goe-navbar .navbar-toggle.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.create-your-goe-navbar .navbar-toggle.is-active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .create-your-goe-navbar .navbar-toggle {
        display: flex;
    }

    .create-your-goe-navbar .navbar-menu {
        display: none !important;
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
        padding: 1rem 0 !important;
    }

    .create-your-goe-navbar .navbar-menu.is-open {
        display: flex !important;
    }

    .create-your-goe-navbar.is-open .navbar-logo {
        display: none !important;
    }

    .create-your-goe-navbar.is-open .navbar-container {
        justify-content: flex-end !important;
        flex-wrap: wrap !important;
    }

    .create-your-goe-navbar .navbar-dropdown {
        position: static !important;
        box-shadow: none !important;
        min-width: 100% !important;
    }

    .create-your-goe-navbar .navbar-menu > li:hover .navbar-dropdown {
        display: none !important;
    }
}

/* Footer */
.create-your-goe-footer {
    background-color: #274933;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.create-your-goe-footer .create-your-goe-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.create-your-goe-footer .create-your-goe-footer__heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 24px;
    text-transform: uppercase;
}

.create-your-goe-footer .create-your-goe-footer__social {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.create-your-goe-footer .create-your-goe-footer__social-link {
    align-items: center;
    background-color: #ffffff;
    border-radius: 50%;
    color: #274933;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    width: 40px;
}

.create-your-goe-footer .create-your-goe-footer__divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    margin: 0 0 24px;
}

.create-your-goe-footer .create-your-goe-footer__bottom {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 0.875rem;
}

.create-your-goe-footer .create-your-goe-footer__copyright {
    margin: 0;
}

.create-your-goe-footer .create-your-goe-footer__legal {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.create-your-goe-footer .create-your-goe-footer__legal a {
    color: #ffffff;
    text-decoration: none;
}

.create-your-goe-footer .create-your-goe-footer__legal span {
    color: rgba(255, 255, 255, 0.4);
}

/* Page Header */
.create-your-goe-page-header {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.create-your-goe-page-header .page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #274933;
}

.create-your-goe-page-header .page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.85) 0%, rgba(30, 144, 255, 0.85) 100%);
    opacity: 0.7;
}

.create-your-goe-page-header .page-header-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

.create-your-goe-page-header .page-header-breadcrumbs {
    margin-bottom: 1rem;
}

.create-your-goe-page-header .breadcrumb-link {
    color: #ffffff;
    text-decoration: none;
}

.create-your-goe-page-header .breadcrumb-separator {
    color: #cccccc;
}

.create-your-goe-page-header .breadcrumb-current {
    color: #ffffff;
}

.create-your-goe-page-header .page-header-title {
    color: #ffffff;
    font-size: 2.5rem;
    margin: 0;
}
