body.ceprol-menu-open {
    overflow: hidden;
}

.ceprol-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 28px;
}

.ceprol-home-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ceprol-top-bar {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.ceprol-top-bar-content {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ceprol-top-bar-left,
.ceprol-top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ceprol-top-bar-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #374151 !important;
    font-size: 0.87rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: color .2s ease;
}

.ceprol-top-bar-contact:hover {
    color: #33a457 !important;
}

.ceprol-top-bar-contact i {
    font-size: 18px;
    color: #33a457 !important;
    margin: 0;
}

.ceprol-top-bar-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ceprol-top-bar-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #4b5563 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all .2s ease;
}

.ceprol-top-bar-social a:hover {
    background: #33a457;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.ceprol-main-header {
    background: #33a457;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ceprol-home-nav {
    display: grid;
    grid-template-columns: 180px 1fr 80px;
    align-items: center;
    min-height: 104px;
    gap: 20px;
}

.ceprol-home-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.ceprol-home-toggle {
    appearance: none !important;
    -webkit-appearance: none !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    font-weight: 700;
    padding: 0;
    line-height: 1;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.ceprol-home-toggle i {
    font-size: 34px !important;
    line-height: 1;
    margin: 0;
    color: #ffffff !important;
}

.ceprol-home-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-width: 0;
}

.ceprol-home-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    flex-shrink: 0;
}

.ceprol-home-brand img {
    max-height: 62px;
    width: auto;
    display: block;
}

.ceprol-home-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ceprol-home-search {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all .2s ease;
}

.ceprol-home-search:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.ceprol-home-search i {
    font-size: 24px !important;
    color: #ffffff !important;
    margin: 0;
}

.ceprol-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 1090;
}

.ceprol-drawer-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ceprol-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 340px;
    max-width: calc(100vw - 32px);
    height: 100vh;
    background: #ffffff;
    box-shadow: 18px 0 40px rgba(0, 0, 0, 0.16);
    transform: translateX(-100%);
    transition: transform .28s ease;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    font-family: Roboto, "Helvetica", Arial, sans-serif;
}

.ceprol-drawer,
.ceprol-drawer *,
.ceprol-drawer *::before,
.ceprol-drawer *::after {
    box-sizing: border-box;
}

.ceprol-drawer.is-open {
    transform: translateX(0);
}

.ceprol-drawer-header {
    min-height: 88px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #eef0f2;
    background: #33a457;
    color: #ffffff;
}

.ceprol-drawer-title {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.ceprol-drawer-close {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: background .2s ease, transform .2s ease !important;
    text-transform: none !important;
}

.ceprol-drawer-close:hover {
    background: rgba(255, 255, 255, 0.22) !important;
    transform: rotate(90deg);
}

.ceprol-drawer-close i {
    font-size: 24px !important;
    line-height: 1 !important;
    margin: 0 !important;
    color: #ffffff !important;
}

.ceprol-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 18px 0;
}

.ceprol-drawer-menu,
.ceprol-drawer-submenu,
.ceprol-drawer-menu li,
.ceprol-drawer-submenu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ceprol-drawer-menu li::before,
.ceprol-drawer-menu li::after,
.ceprol-drawer-submenu li::before,
.ceprol-drawer-submenu li::after,
.ceprol-drawer-menu li::marker,
.ceprol-drawer-submenu li::marker {
    content: none !important;
    display: none !important;
}

.ceprol-drawer-menu a,
.ceprol-drawer-submenu a,
.ceprol-drawer-menu button {
    font-family: inherit !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.ceprol-drawer-menu > li > a {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
    padding: 14px 22px !important;
    margin: 0 !important;
    border: 0 !important;
    border-left: 4px solid transparent !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #1f2937 !important;
    font-size: 0.98rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    transition: background .2s ease, color .2s ease, padding-left .2s ease, border-color .2s ease !important;
}

.ceprol-drawer-menu > li > a:hover,
.ceprol-drawer-menu > li > a:focus {
    background: #f8fafc !important;
    color: #33a457 !important;
    padding-left: 28px !important;
    border-left-color: #33a457 !important;
}

.ceprol-drawer-menu > li > a i {
    font-size: 22px !important;
    line-height: 1 !important;
    color: #33a457 !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.ceprol-drawer-menu > li > a span {
    color: inherit !important;
}

.ceprol-drawer-menu-button {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 14px 22px !important;
    margin: 0 !important;
    border: 0 !important;
    border-left: 4px solid transparent !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #1f2937 !important;
    font-size: 0.98rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    text-align: left !important;
    cursor: pointer !important;
    transition: background .2s ease, color .2s ease, padding-left .2s ease, border-color .2s ease !important;
}

.ceprol-drawer-menu-button:hover,
.ceprol-drawer-menu-button:focus {
    background: #f8fafc !important;
    color: #33a457 !important;
    padding-left: 28px !important;
    border-left-color: #33a457 !important;
}

.ceprol-drawer-menu-button-left {
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
    min-width: 0 !important;
}

.ceprol-drawer-menu-button-left span {
    color: inherit !important;
}

.ceprol-drawer-menu-button i.material-icons:first-child {
    font-size: 22px !important;
    line-height: 1 !important;
    color: #33a457 !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.ceprol-drawer-menu-button .ceprol-drawer-arrow {
    font-size: 22px !important;
    line-height: 1 !important;
    color: #6b7280 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    transition: transform .2s ease, color .2s ease !important;
}

.ceprol-drawer-menu-item.is-open .ceprol-drawer-arrow {
    transform: rotate(180deg);
    color: #33a457 !important;
}

.ceprol-drawer-submenu {
    background: #f8fafc !important;
    display: none;
    overflow: hidden;
    border-left: 4px solid #e5e7eb !important;
}

.ceprol-drawer-menu-item.is-open .ceprol-drawer-submenu {
    display: block;
}

.ceprol-drawer-submenu li a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    padding: 12px 22px 12px 54px !important;
    margin: 0 !important;
    border: 0 !important;
    border-left: 4px solid transparent !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #4b5563 !important;
    font-size: 0.94rem !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    transition: background .2s ease, color .2s ease, padding-left .2s ease, border-color .2s ease !important;
}

.ceprol-drawer-submenu li a:hover,
.ceprol-drawer-submenu li a:focus {
    background: #eef6f0 !important;
    color: #33a457 !important;
    border-left-color: #33a457 !important;
    padding-left: 60px !important;
}

.ceprol-drawer-submenu li a i {
    font-size: 20px !important;
    line-height: 1 !important;
    color: #9ca3af !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.ceprol-drawer-submenu li a span {
    color: inherit !important;
}

.ceprol-drawer-footer {
    padding: 18px 22px 22px;
    border-top: 1px solid #eef0f2;
}

.ceprol-drawer-contact {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #374151 !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    margin-bottom: 16px !important;
}

.ceprol-drawer-contact i {
    color: #33a457 !important;
    font-size: 18px !important;
    margin: 0 !important;
}

.ceprol-drawer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ceprol-drawer-social a {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: #f3f4f6 !important;
    color: #4b5563 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    transition: all .2s ease !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
}

.ceprol-drawer-social a:hover {
    background: #33a457 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .ceprol-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ceprol-home-nav {
        grid-template-columns: 64px 1fr 64px;
        min-height: 88px;
    }

    .ceprol-home-toggle span {
        display: none;
    }

    .ceprol-home-brand img {
        max-height: 50px;
    }
}

@media (max-width: 767.98px) {
    .ceprol-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ceprol-top-bar-content {
        min-height: 44px;
        justify-content: center;
    }

    .ceprol-top-bar-right {
        display: none;
    }

    .ceprol-home-nav {
        grid-template-columns: 52px 1fr 52px;
        min-height: 82px;
    }

    .ceprol-home-brand img {
        max-height: 42px;
    }

    .ceprol-home-search {
        width: 38px;
        height: 38px;
    }

    .ceprol-drawer {
        width: 310px;
        max-width: calc(100vw - 20px);
    }

    .ceprol-drawer-title {
        font-size: 1.05rem !important;
    }

    .ceprol-drawer-menu > li > a,
    .ceprol-drawer-menu-button {
        font-size: 0.95rem !important;
        padding: 13px 18px !important;
    }

    .ceprol-drawer-menu > li > a:hover,
    .ceprol-drawer-menu-button:hover {
        padding-left: 24px !important;
    }

    .ceprol-drawer-submenu li a {
        font-size: 0.9rem !important;
        padding: 11px 18px 11px 46px !important;
    }

    .ceprol-drawer-submenu li a:hover {
        padding-left: 52px !important;
    }
}
