* {
    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: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    margin: 1em 0;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
    line-height: 1.5;
}

p {
    margin: 1em 0;
    line-height: 1.6;
}

header {
    background-color: #6a1b9a;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
     
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
}

.logo span {
    color: #e0e0e0;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: all 0.3s;
}

.menu-toggle div {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s;
}

.menu-toggle.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active div:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active div:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.header-menu {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #4a148c;
    width: 260px;
    padding: 20px;
    border-radius: 0 0 0 12px;
    box-shadow: -5px 10px 20px rgba(0,0,0,0.2);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    max-height: calc(100vh - 90px);   
    overflow-y: auto;                  
    box-sizing: border-box;
}

.header-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.header-menu h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #ba68c8;
    text-align: center;
}

.header-menu ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.header-menu a {
    color: #e0e0e0;
    padding: 12px 15px;
    border-radius: 6px;
    transition: all 0.3s;
    display: block;
}

.header-menu a:hover {
    background-color: #6a1b9a;
    color: #ffffff;
}


.wrapper {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
    flex: 1;
}


.main-content {
    flex: 1;
    max-width: 900px;
    margin-top: 70px;    
    padding: 60px 0;
}



.content {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}










.wrapper-review {
    width: 100%;                
    max-width: none;         
    margin: 0 auto;
    padding: 0 20px;             
    flex: 1;                    
    display: flex;              
    justify-content: center;    
}

.main-content-review {
    width: 100%;
    margin-top: 70px;
    padding: 60px 0;
}

.content-review {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.content-review .postimage img {
    width: 70%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .wrapper-review {
        padding: 0 15px;
    }
    .main-content-review {
        padding: 40px 0;
    }
    .content-review {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .content-review {
        padding: 30px 20px;
        max-width: 100%;
    }
    .content-review h1 {
        font-size: 1.5rem;
    }
	
	.content-review .postimage img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
	
	
}





.toc { 
background: #f9f9f9; 
padding: 20px; 
border-radius: 8px; 
margin-bottom: 30px; 
}

.faq { 
margin-top: 50px; 
}


.toc a { 
color: #2980b9; text-decoration: none; 
}


.toc  a:hover { 
text-decoration: underline; 
}

blockquote { 
border-left: 4px solid #ccc; 
padding-left: 15px; 
margin: 20px 0; 
font-style: italic; 
}



















 
.wrapper-index {
    width: 100%;                
    max-width: none;         
    margin: 0 auto;
    padding: 0 20px;             
    flex: 1;                    
    display: flex;              
    justify-content: center;   
    margin-bottom: 200px;	
}

.main-index-content {
    width: 100%;
    margin-top: 70px;
    padding: 60px 0;
}

.index-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.index-content .postimage img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .wrapper-index {
        padding: 0 15px;
    }
    .main-index-content {
        padding: 40px 0;
    }
    .index-content {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .index-content {
        padding: 30px 20px;
        max-width: 100%;
    }
    .index-content h1 {
        font-size: 1.5rem;
    }
}






.postimage  {
    margin-bottom: 15px;
	margin-top: 5px;
	text-align: center;
}


.postimage img {
	width: 70%;
}


@media (max-width: 768px) {
	.postimage img {
		width: 100%;
	}
}


.content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}


.sidebar {
    width: 300px;
    margin-top: 70px;
    padding: 60px 0;
    align-self: flex-start;
}

.sidebar-widget {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.4rem;
    color: #4a148c;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ba68c8;
    text-align: center;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget li {
    margin-bottom: 12px;
}

.sidebar-widget a {
    color: #2c3e50;
    display: block;
    padding: 8px 0;
    transition: all 0.3s;
    border-bottom: 1px dashed transparent;
}

.sidebar-widget a:hover {
    color: #6a1b9a;
    padding-left: 8px;
    border-bottom: 1px dashed #ba68c8;
}

footer {
    background-color: #44157d;
    color: #ecf0f1;
    padding: 40px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #e0e0e0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ba68c8;
}

.copyright {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .wrapper {
        flex-direction: column;
        padding: 0 15px;
    }
    
    .sidebar {
        display: none;         
    }
    
    .main-content {
        padding: 40px 0;
    }
    
    .content {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .menu-toggle {
        padding: 8px;
    }
    
    .menu-toggle div {
        width: 22px;
    }
    
    .header-menu {
        width: 220px;
        padding: 15px;
    }
    
    .content h1 {
        font-size: 2rem;
    }
}


.sitemap-title {
    text-align: center;
    margin-bottom: 40px;
    color: #6a1b9a;
}

.sitemap-title h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #6a1b9a;
}

.sitemap-title p {
    font-size: 1.2rem;
    color: #555;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-column {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.sitemap-column h2 {
    font-size: 1.5rem;
    color: #4a148c;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
    text-align: center;
}

.sitemap-column ul {
    list-style: none;
}

.sitemap-column ul li {
    margin-bottom: 12px;
}

.sitemap-column a {
    color: #2c3e50;
    padding: 8px 0;
    display: block;
    transition: all 0.3s;
    border-bottom: 1px dashed transparent;
}

.sitemap-column a:hover {
    color: #3498db;
    border-bottom: 1px dashed #3498db;
    padding-left: 8px;
}

@media (max-width: 768px) {
    .sitemap-title h1 {
        font-size: 2.2rem;
    }
    
    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sitemap-column {
        padding: 25px;
    }
}



/*-- Review Form --*/
/* General Form Styling */
.review-form {
    max-width: 500px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	margin-top: 50px;
	margin-left: auto;
    margin-right: auto;
}

/* Input Fields */
.input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.input:focus {
    border-color: #007bff;
    outline: none;
}

 
textarea.input {
    resize: vertical;
    min-height: 100px;
}

 
.input-rating {
    
    align-items: center;
    margin-bottom: 20px;
}

.input-rating span {
    margin-right: 10px;
    font-size: 16px;
    color: #333;
	font-weight: 600;
}

.formstars {
    display: inline-flex;
    direction: rtl;  
}

.formstars input[type="radio"] {
    display: none;  
}

.formstars label {
    font-size: 42px;
    color: #ccc;  
    cursor: pointer;
    transition: color 0.3s ease;
    margin-right: 5px;  
}

.formstars label::before {
    content: "★";  
}

 
.formstars input[type="radio"]:checked ~ label,
.formstars label:hover,
.formstars label:hover ~ label {
    color: gold;  
}

 
.formstars input[type="radio"]:checked ~ label {
    color: gold;
}

 
.captcha {
    margin-bottom: 20px;
}

.captcha p {
    font-size: 16px;
    color: #333333;
    margin-bottom: 5px;
	font-weight: 600;
}

 
.primary-btn {
    display: inline-block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.primary-btn:hover {
    background-color: #0056b3;
}

 
@media (max-width: 600px) {
    .review-form {
        padding: 15px;
    }

    .stars label {
        font-size: 20px; /* Adjust star size for smaller screens */
    }
}
/*-- Review Form --*/







/*-- All stars --*/
.average-rating .stars {
    font-size: 1.5em; 
	 
}

.average-rating .filled-star {
    color: gold; 
	margin-right: -6px;
	
}

.average-rating .empty-star {
    color: #d4d5ba; 
	border: none;
}

 
.star-breakdown .rating-stars {
    font-size: 1.4em; 
}

.star-breakdown .filled-star {
    color: gold;
   font-size: 25px;	
}

.star-breakdown .empty-star {
    color: #d4d5ba;
	font-size: 25px;
}

 
.average-rating {
    font-size: 1.5em;
    font-weight: bold;
   
}


.average-rating h5 {
    font-size: 16px;
    font-weight: bold;
   
}

.star-breakdown {
    margin-top: 10px;
    padding: 0;
}

.star-breakdown li {
    list-style: none;
    display: flex;
    align-items: center;
	line-height: 15px;
   
}

.reviews-container {
    width: 100%;
    max-width: none !important;     
    margin: 20px 0;                 
    padding: 0 20px;                 
    box-sizing: border-box;
}

.review {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.review p {
    margin: 5px 0;
}

.rating-count {
    margin-left: 10px;
    font-weight: bold;
}

.filled-star-in-review {
    font-size: 1.8em;
    display: inline-block;
	color:gold;
}


.empty-star-in-review {
    font-size: 1.8em;
    display: inline-block;
	color:#d4d5ba;
}
/*-- All stars --*/


.review-success {
    width:100%; 
	text-align:center; 
	color:green; 
	margin:10px 0; 
	font-weight:bold;
}



.please-post {
width:100%; 
   font-weight: bold; 
   color: green; 
   font-size: 20px; 
   text-align:center; 
   margin-top:76px; 
   margin-bottom:10px;
}



.comments-for-this-page {
   width:100%; 
   text-align:center; 
   margin-bottom:10px;
}


#anchor{
   position: relative; 
   top: -110px; 
   padding-top: 50px;
}

