/* Header Style Match */
.site-header {
    position: relative !important;
    background: #fff !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
    padding: 15px 0;
}

.main-navigation a,
.header-actions i,
.search-submit i,
.desktop-search-close i {
    color: #000000 !important;
}

.main-navigation a:hover {
    color: var(--primary-gold) !important;
}

.header-search .search-field {
    border: 1px solid #eee !important;
    background: #fff !important;
    color: #000000 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
}

.header-search .search-field::placeholder {
    color: #bbb !important;
}

/* Page Background Match */
html,
body,
.site-main {
    background-color: #fff !important;
    min-height: 100vh;
}

/* Hover effect for breadcrumb home link */
.gmc-breadcrumbs a:hover {
    color: var(--primary-gold) !important;
}

/* Content Styling for better readability */
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5 {
    color: #000;
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 26px;
}

.entry-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #808080;
}

@media (max-width: 768px) {

    .entry-content h2,
    .entry-content h3,
    .entry-content h4,
    .entry-content h5 {
        font-size: 18px;
    }

    .entry-content p {
        font-size: 14px;
    }
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 25px;
    padding-left: 40px;
}

.entry-content ul {
    list-style-type: disc;
}

.entry-content ol {
    list-style-type: decimal;
}


/* Layout */
.info-page-container {
    padding-top: 20px;
    padding-bottom: 80px;
}

/* Breadcrumbs */
.gmc-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 14px;
    font-family: var(--font-body);
}

.gmc-breadcrumbs a {
    text-decoration: none;
    transition: color 0.3s;
    color: #000;
}

.gmc-separator i {
    font-size: 10px;
    color: #c38f26;
}

.current-breadcrumb {
    color: #000;
}

/* Entry Header */
.entry-title {
    color: #000;
    margin-bottom: 40px;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .entry-title {
        font-size: 30px;
    }
}

/* Entry Content Container */
.entry-content {
    color: #000000;
    line-height: 1.8;
    font-size: 16px;
    font-family: var(--font-body);
    max-width: 100%;
}

.entry-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {

    .container,
    .info-page-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}