body {
            font-family: 'Georgia', serif;
            margin: 0;
            padding: 20px;
            background-color: #f9f9f9;
            color: #333;
}

h1, h3, h4 {
            color: #2c3e50;
            text-align: center;
}
       
section {
    max-width: 900px; /* Reduced width to account for ad space */
    margin: 0 auto;   /* Center the content */
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Optional: Add extra space for the ads on larger screens */
@media (min-width: 1200px) {
    body {
        padding-left: 150px; /* Space for left ad */
        padding-right: 150px; /* Space for right ad */
    }
}

.image img {
            max-width: 100%;
            border-radius: 8px;
            margin-bottom: 20px;
            display: block;
            margin: 0 auto;
            width: 0px;
            height: 0px;
}

.content, .right-side {
            margin-bottom: 20px;
}

p, li {
            font-size: 15.9px;
            line-height: 1.6;
}

ul {
            list-style: disc;
            padding-left: 50px;
            
}
 
.icons {
    display: flex;
    justify-content: center;
    color: #C850C0;
    padding: 5px 10;
}
/*
.icons{
    display: flex;
    color: #C850C0;
    margin-left: 35px;           
}
*/
.icons li {
    margin: 0 20px;
    list-style-type: none; /* Removes the dots from the list items */
    margin-left: 00px;
}

.icons li a i {
    font-size: 22px; /* Adjust this value to increase or decrease the icon size */
    color: #333; /* Optional: Set a color for the icons */
    transition: color 0.3s ease; /* Optional: Add a transition for hover effect */
}

/* Hover effect to change color */
.icons li a:hover i {
    color: #007bff; /* Change color on hover */
}

.topic-text {
            font-weight: bold;
            margin: 20px 0 10px;
}

.contact-info {
            text-align: center;
}

.footer {
            text-align: center;
            padding: 15px 0;
            margin-top: 40px;
            border-top: 1px solid #ddd;
}

.tooltip {
            position: relative;
            display: inline-block;
            cursor: pointer;
}

.tooltip .tooltiptext {
            visibility: hidden;
            width: 120px;
            background-color: #555;
            color: #fff;
            text-align: center;
            border-radius: 6px;
            padding: 5px 0;
            position: absolute;
            z-index: 1;
            bottom: 100%;
            left: 50%;
            margin-left: -60px;
            opacity: 0;
            transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
}
 
.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #282612;
  margin-left: -150px;     /* No margin on the left */
  margin-right: 0px;    /* No margin on the right */
  margin-top: -20px;
  width: 98.5vw;         /* Full viewport width */
  border-collapse: collapse;
  line-height: 0px;
  text-align: left;
  box-sizing: border-box; /* Ensures padding and border don't affect width */
}

.flex>div {
  flex: 1 0 10%;
}
 
.flex>div:first-child {
  flex: 0 1 8%;
} 	

.fa {
  padding: 0px;
  font-size: 32px;
  text-align: center;
  text-decoration: none;
  margin: 0px 0px;
  border: none;
}
 
.fa:hover {
    opacity: 0.5;
}
  
.fa-home{
 	 background: black;
 	 color: red;
}