       /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }
        
        /* Header Styles */
        header {
            background-color: #222;
            color: #f5f5f5;
            padding: 1.5rem 1.2rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .header-container {
            max-width: 1135px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
		
        .site-title, .site-title a {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: #e0e0e0;
			text-decoration: none;
        }
        
        .site-tagline {
            font-size: 1rem;
            font-weight: 400;
            color: #cccccc;
        }
        
        /* Main Content Container */
        .main-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
            display: flex;
			flex-direction: column;
            gap: 2rem;
        }
        
        /* Sidebar Styles */
        .sidebar {
            width: 100%;
            background-color: #fafafa;
            padding: 1.5rem;
			margin-bottom: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .sidebar h2 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: #222;
            border-bottom: 2px solid #4a90e2;
            padding-bottom: 0.5rem;
        }
        
        .sidebar ul {
            list-style-type: none;
        }
        
        .sidebar li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }
        
        .sidebar a {
            color: #333;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        .sidebar a:hover {
            color: #4a90e2;
            text-decoration: underline;
        }
		
		.sidebar-banner-wrapper iframe, .sidebar-banner-wrapper img  {
			  top: unset;
			  left: unset;
			  transform: unset;
			  margin: 2rem auto 0;
			  display: flex;
		}
        
        /* Main Content Area */
        .content-area {
            flex: 1;
        }
        
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #222;
        }
        
        .review-card {
            background-color: #fff;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: transform 0.2s ease;
        }

        
        .review-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #4a90e2;
            font-weight: 600;
        }
        
        .review-image {
            width: 100%;
            height: auto;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .review-summary {
            margin-bottom: 1rem;
        }
        
        .review-summary h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #222;
        }
        
        .review-text {
            margin-bottom: 1rem;
            font-size: 1rem;
        }
        
        .read-more {
            color: #4a90e2;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s ease;
        }
        
        .read-more:hover {
            color: #2c6bbd;
            text-decoration: underline;
        }
        
        /* Footer Styles */
        footer {
            background-color: #222;
            color: #f5f5f5;
            padding: 1.5rem 2rem;
            margin-top: 3rem;
            border-top: 1px solid #444;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .copyright {
            font-size: 0.9rem;
        }
        
        .footer-links {
            display: flex;
            gap: 1.5rem;
        }
        
        .footer-links a {
            color: #f5f5f5;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        .footer-links a:hover {
            color: #4a90e2;
            text-decoration: underline;
        }
		
		 /* Contact Form Styles */
		.contact-card {
			background-color: #fff;
			border-radius: 8px;
			padding: 1.5rem;
			margin-bottom: 2rem;
			box-shadow: 0 3px 10px rgba(0,0,0,0.08);
		}

		.contact-card label {
			display: block;
			margin-bottom: 0.5rem;
			font-weight: 600;
			color: #222;
			font-size: 1rem;
		}

		.contact-card input,
		.contact-card textarea {
			width: 100%;
			padding: 0.75rem;
			border: 1px solid #ddd;
			border-radius: 4px;
			font-size: 1rem;
			transition: border-color 0.2s;
		}

		.contact-card input:focus,
		.contact-card textarea:focus {
			border-color: #4a90e2;
			outline: none;
		}

		.contact-card textarea {
			height: 120px;
			resize: vertical;
		}

		.captcha-box {
			background: #f9f9f9;
			padding: 1rem;
			border-radius: 6px;
			margin: 1.2rem 0;
			text-align: center;
		}

		.captcha-question {
			font-size: 1.1rem;
			margin-bottom: 0.75rem;
			color: #222;
			font-weight: 600;
		}

		.captcha-input {
			width: 100%;
			max-width: 220px;
			padding: 0.6rem;
			border: 1px solid #ccc;
			border-radius: 4px;
			margin: 0 auto 0.5rem;
			display: block;
			font-size: 1rem;
			text-align: center;
		}

		.captcha-hint {
			font-size: 0.9rem;
			color: #666;
			line-height: 1.4;
		}

		.contact-submit {
			background: #4a90e2;
			color: white;
			border: none;
			padding: 0.75rem 1.5rem;
			border-radius: 4px;
			cursor: pointer;
			font-weight: 600;
			font-size: 1rem;
			transition: background-color 0.2s;
		}

		.contact-submit:hover {
			background: #357abd;
		}

		/* Success & Error Messages */
		.success-message {
			background-color: #e8f5e9;
			border-left: 4px solid #4caf50;
			color: #2e7d32;
		}

		.error-message {
			background-color: #ffebee;
			border-left: 4px solid #f44336;
			color: #c62828;
		}

		.success-message .review-title,
		.error-message .review-title {
			color: inherit !important;
		}

		/* Gallery Grid */
		.gallery-grid {
			display: grid;
			grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
			gap: 1.5rem;
			margin: 2rem 0;
		}

		.gallery-item {
			display: block;
			border-radius: 4px;
			overflow: hidden;
			box-shadow: 0 2px 8px rgba(0,0,0,0.1);
			transition: transform 0.2s;
		}

		.gallery-thumb {
			width: 100%;
			height: auto;
			object-fit: cover;
			display: block;
		}

		/* Gallery preview in review-summary */
		.review-gallery-grid {
			display: grid;
			grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
			gap: 1rem;
			margin: 1.5rem 0 1rem;
		}

		.review-gallery-item {
			display: block;
			border-radius: 4px;
			overflow: hidden;
			box-shadow: 0 2px 6px rgba(0,0,0,0.1);
		}

		.review-gallery-thumb {
			width: 100%;
			height: auto;
			object-fit: cover;
			display: block;
		}
		.gallery-text {
			font-size: 1.2rem;
			text-align: center;
			margin-top: 2rem;
		}
        /* Responsive Design */
        @media (min-width: 1025px) {
			 header {
				padding: 1.5rem 2rem;
			}
            .main-container {
				flex-direction: row-reverse;
				align-items: stretch;
            }
            
			.sidebar {
				width: 300px;
			}

            .site-title {
                font-size: 2.5rem;
            }
            
            .site-tagline {
                font-size: 1.2rem;
            }	
				
			.sidebar-banner-wrapper {
			  width: 300px;
			  height: 250px;
			  overflow: hidden;
			  position: relative;
			}

			.sidebar-banner-wrapper iframe, .sidebar-banner-wrapper img {
			  width: 300px !important;
			  height: 250px !important;
			  position: absolute;
			  top: 50%;
			  left: 50%;
			  transform: translate(-50%, -50%) scale(0.8333);
			  transform-origin: top left;
			  border: none;
			  pointer-events: auto;
			}
			

        }
        
        @media (max-width: 768px) {

            .site-title {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .review-title {
                font-size: 1.3rem;
            }
            
            .footer-container {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links {
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            
            .site-title {
                font-size: 1.5rem;
            }
            
            .site-tagline {
                font-size: 0.9rem;
            }
            
            .main-container {
                padding: 0.5rem;
            }
            
            .sidebar {
                padding: 1rem;
            }
            
            .review-card {
                padding: 1rem;
            }
            
            .footer-container {
                padding: 1rem 0;
            }
        }
        
        /* SEO Optimized Elements */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        
        /* Structured Data Schema Markup (for SEO) */
        .schema-markup {
            display: none;
        }
		