
.quotes {
            background: linear-gradient(90deg, #6a5acd, #483d8b);
            color: white;
            padding: 15px 0;
            overflow: hidden;
            position: relative;
        }
        
        .quotes-container {
            display: flex;
            animation: scroll 40s linear infinite;
            white-space: nowrap;
        }
        
        .quotes p {
            display: inline-block;
            padding: 0 40px;
            font-size: 25px;
            font-weight: 500;
        }
 @keyframes scroll {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }



/* Main content styles */
main {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    padding: 10px;
	
}

/* Content area and column styles */
.content-area {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    margin: 5px; /* Space between content and sidebar */
}

.column {
	
    width: 90%; /* Default width for larger screens */
    margin: 2.5%; /* Added semicolon for margin */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
	background-color: #fff;
	border-color:1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
column  {
            max-width: 80%; /* Make images responsive within their columns */object-fit: cover;

            height:auto;
            border-radius: 5px;
            margin-bottom: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
margin:35px;
margin-top: 0px;			
			
        }
		
		.column article {
            text-align: justify; /* Use CSS for justification */
            margin: 30px;
		
			
        }
		
whatsapp-button {
            display: inline-block;
            background-color: #25D366; /* WhatsApp brand color */
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }
/* Sidebar styles */
.sidebar {
    width: 350px; /* Fixed width for sidebar */
    padding: 10px;
    background-color: #f4f4f4
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	sidebar-bg: #f9f9f9
	 border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
			border-color: #ddd;
	
}
/* Sidebar */
        .sidebar {
           display: flex;
            flex-direction: column;
			padding:1px;
            gap: 30px;
        }

        .sidebar-widget {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		padding:10px;
		margin:10px;
			
        }

        .widget-title {
            background-color: #2c3e50;
            color: white;
            padding: 15px 20px;
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px
			padding:5px;
			 border-radius: 5px;
			

        }

        .widget-content {
            padding: 20px;
			padding:2px;
			
        }

        .sidebar-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
			border:1px solid black
			padding:2px;
			
        }

        .sidebar-image:hover {
            transform: scale(1.02);
        }

        .popular-posts {
            list-style: none;
			
        }

        .popular-posts li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
            display: flex;
			padding:2px;
			
        }

        .popular-posts li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
			padding:2px;
			
        }

        .popular-post-image {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 5px;
            margin-right: 15px;
			padding:2px;
        }

        .popular-post-content {
            flex: 1;
        }

        .popular-post-title {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 5px;
            line-height: 1.3;
            color: #2c3e50;
			padding:2px;
        }


	