body {
 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Serif', serif;
}

.bodyCg {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header, nav, footer, section {
    padding: 1em;
}

header {
    background: #f0d9b5;
    color: #5a5a5a;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #5a5a5a;
    text-decoration: none;
    font-weight: bold;
}

.contentCg {
    display: flex;
    flex-wrap: wrap;
}

.leftCol, .rightCol {
    flex: 1;
    padding: 1em;
}

.sidebar {
    padding: 1em;
    background: #f4f4f4;
}

.sidebarTitle {
    font-weight: bold;
}

footer {
    background: #4d76a5;
    color: #ffffff;
    text-align: center;
    padding: 1em 0;
}

.bottomMenu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.bottomMenu li {
    display: inline;
    margin: 0 10px;
}

.bottomMenu li a {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .contentCg {
        flex-direction: column;
    }

    .rightCol {
        display: none;
    }
}
.card {
    padding: 10;
    margin: 2%;
    background: #d9534f;
    color: #ffffff;
    width: 18rem
}

.center-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin: 0 auto;  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    
}

.card-container {
    display: flex;
    justify-content: center; 
    align-items: center;
}   

.row-gray{
    background-color: gray;
    padding: 10px;
    border-radius: 4px;
}

.custom-list-group .list-group-item:nth-child(odd) {
    background-color: #f0f0f0;  
}

.custom-list-group .list-group-item:nth-child(even) {
    background-color: #d0d0d0; 
}


.labelKey {
	width: 120px;
	font-weight: bold;
	text-align: right !important;
	line-height: 1.8em;
	margin: 3px 10px 0 0 !important;
}
.labelValue {
	text-align: left;
	line-height: 1.8em;
	margin-top: 3px !important;
}
.black-theme{
    background: #d9534f;
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
}
.btn-primary{
    
}
.background-color {
    background-color: #d9534f; /* Adjust to match your desired color */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.header-footer-bg {
    background-color: #f0d9b5; /* or the color you used on the contact page */
    padding: 20px;
    border-radius: 8px;
}

.product-list-item {
    margin-bottom: 10px; /* Space between list items */
    padding: 10px;
    border: 1px solid #ddd; /* Optional: add a border for better separation */
    border-radius: 5px;
    background-color: #ffffff; /* or the color you prefer */
}
strong {
    font-weight: bold;
}
