.pkp_site_nav_menu {
    background: transparent;
}

.pkp_structure_main:first-child:last-child{
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
}

.pkp_structure_main:first-child:last-child:before {
    left: 0;
}

html body nav.cmp_breadcrumbs {
  display: none !important;
}

.cmp_notification {
    color:white;
    border-left: .357rem solid #334824;
    background: linear-gradient(90deg, #608326 , #9D3900 );
}

.cmp_notification a {
    color: white;
}

.pkp_nav_list ul li {
    color: #334824;
}

/* Dropdown menu links - default color #344825 */
#navigationPrimary.pkp_navigation_primary .dropdown-menu li a {
    color: #344825;
    border-left: 4px solid transparent;
    padding-left: 12px;
    transition: all 0.3s ease;
}

/* Dropdown menu links hover - add left border */
#navigationPrimary.pkp_navigation_primary .dropdown-menu li a:hover {
    border-left: 4px solid #344825;
    padding-left: 16px;
}

/* Profile dropdown menu links - default color #344825 */
/* Profile dropdown menu links - default color #344825 */
ul.dropdown-menu li.profile a {
    color: #344825 !important;
    border-left: 4px solid transparent;
    padding-left: 12px;
    transition: all 0.3s ease;
}

/* Profile dropdown menu links hover - add left border */
ul.dropdown-menu li.profile a:hover {
    border-left: 4px solid #344825 !important;
    padding-left: 16px;
}

.pkp_brand_footer {
    display: none;
}

.pkp_footer_content {
    padding: 0;
}

.pkp_structure_footer {
    margin: 0;
    width: auto;
}

/* Universal styling for all sidebar blocks */
.pkp_block {
    background-color: #f8f9fa;
    border-left: 4px solid #344825;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pkp_block h2.title {
    color: #344825;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #344825;
}

.pkp_block .content {
    padding: 0;
}

/* Specific styling for Visitors block */
#customblock-visitors .content {
    text-align: center;
    padding: 10px 0;
}

#customblock-visitors .content p {
    margin: 0;
}

#customblock-visitors .content a {
    display: inline-block;
    transition: transform 0.3s ease;
}

#customblock-visitors .content a:hover {
    transform: scale(1.05);
}

#customblock-visitors .content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* List styling for all blocks */
.pkp_block .content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkp_block .content ul li {
    margin-bottom: 10px;
}

.pkp_block .content ul li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    background-color: white;
    border-radius: 3px;
}

.pkp_block .content ul li a:hover {
    color: #344825;
    border-left: 3px solid #344825;
    padding-left: 20px;
    background-color: #f0f4ec;
    box-shadow: 0 2px 4px rgba(52, 72, 37, 0.1);
}
.pkp_structure_main:after {
    width: 0;
}

.pkp_page_index .additional_content {
    padding: 0;
    padding-left: 0;
    padding-right: 0;
    border-top: 0;
}

/* Minimal Header with Small Logo */
.pkp_head_wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 40px;
    max-width: 100%;
    margin: 0 auto;
}

.header_image_wrapper {
    flex-shrink: 0;
}

.header_image_wrapper img {
    width: 90px !important;
    height: 90px !important;
    object-fit: contain;
}

.header_content_wrapper {
    flex: 1;
    min-width: 0;
    max-width: 100%;
}

.pkp_site_name_wrapper {
    margin-bottom: 10px;
    max-width: 100%;
    overflow: hidden;
}

.pkp_site_name {
    max-width: 100%;
    overflow: hidden;
}

.pkp_site_name a {
    font-size: 20px;
    font-weight: 600;
    color: #344825;
    text-decoration: none;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Ensure navigation wrapper doesn't overflow */
.pkp_site_nav_menu {
    max-width: 100%;
}

.pkp_navigation_primary_wrapper {
    flex-wrap: wrap;
    max-width: 100%;
}

/* Make navigation items wrap if needed */
#navigationPrimary.pkp_navigation_primary {
    flex-wrap: wrap;
}

.pkp_site_name .is_text {
    color: black;
}

.pkp_site_nav_menu a{
    color: black;
}

.pkp_site_nav_menu a:hover, .pkp_site_nav_menu a:focus{
    color: black;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #333;
    line-height: 1.6;
    background-color: #f5f5f5;
}

/* Hero Section: Content Left, Image Right */
.hero-section {
    background-color: #ffffff;
    padding: 60px 20px;
    border-left: 5px solid #344825;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* Left Side: Text Content */
.hero-text {
    flex: 1;
    padding-right: 20px;
}

.hero-title {
    color: #344825;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
}

/* Right Side: Image */
.hero-image {
    flex: 0 0 350px;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Full Width Content Section */
.full-width-section {
    background-color: #ffffff;
    padding: 50px 20px;
    margin-top: 0;
}

.full-width-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    color: #344825;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 30px;
}

.section-title:first-child {
    margin-top: 0;
}

/* Focus Areas List */
.focus-list {
    list-style-position: inside;
    padding-left: 0;
    margin-bottom: 30px;
}

.focus-list li {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 20px;
}

.focus-list li::marker {
    color: #344825;
}

/* Submission Text */
.submission-text {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    max-width: 900px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .hero-image {
        flex: 1;
        width: 100%;
    }
    
    .hero-image img {
        height: 400px;
    }
    
    .hero-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding: 40px 15px;
    }
    
    .full-width-section {
        padding: 40px 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description,
    .focus-list li,
    .submission-text {
        font-size: 15px;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .section-title {
        font-size: 20px;
    }
}