/*
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c2c2c;
    background: linear-gradient(135deg, #f5f1e8 0%, #faf8f3 100%);
}

header {
    background: linear-gradient(135deg, #3d2817 0%, #5c4033 100%);
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}



.container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 3rem;
    background: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-radius: 8px;
}

*/



* {
    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: #f4f4f4;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}


header {
	background: linear-gradient(to right, #1c1c1c 0%, #4a3f35 40%, #c9a961 70%, #f5e6d3 100%);	
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

header p {
    font-size: 1.1rem;
    opacity: 0.9;
}


.servicetermsPage_last_updated {
    background: #f0e6d6;
    padding: 1rem;
    border-left: 4px solid #8b6f47;
    margin-bottom: 2rem;
    border-radius: 4px;
}

h2 {
    color: #3d2817;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #d4a574;
}

h3 {
    color: #5c4033;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem 0;
}

p {
    margin-bottom: 1rem;
    text-align: justify;
}

ul {
    margin: 1rem 0 1rem 2rem;
}

li {
    margin-bottom: 0.5rem;
}

.servicetermsPage_highlight {
    background: #fff9e6;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    border-left: 4px solid #d4a574;
}

.servicetermsPage_contactbox {
    background: linear-gradient(135deg, #3d2817 0%, #5c4033 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: center;
}

.servicetermsPage_contactbox h3 {
    color: #f5d9b8;
    margin-bottom: 1rem;
}

.servicetermsPage_contactbox a {
    color: #f5d9b8;
    text-decoration: none;
    font-weight: bold;
}

.servicetermsPage_contactbox a:hover {
    text-decoration: underline;
}

.homePage_header_section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
   
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.homePage_logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: bold;
    
}

.homePage_logo_image {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
   
    font-size: 28px;
}
.homePage_cart_icon {
    position: relative;
    cursor: pointer;
    transition: transform 0.2s;
}

.homePage_cart_icon:hover {
    transform: scale(1.1);
}

.homePage_cart_svg {
    width: 32px;
    height: 32px;
}

.homePage_cart_badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}
		
.homePage_circle_image {
	width: 50px;         /* Set a fixed width */
	height: 50px;        /* Set a fixed height (must match the width for a perfect circle) */
	border-radius: 60%;   /* Crops the image into a circle */
	object-fit: cover;    /* Ensures the image covers the entire circle without stretching */
}


nav {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-toggle {
    display: none;
    background: #AA6C39 /*#667eea;*/
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 5px;
    margin: 10px 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-menu > li > a:hover {
    /*background: #667eea;*/
    color:  #AA6C39;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    list-style: none;
}

.nav-menu > li:hover .dropdown {
    display: block;
}

.dropdown li a {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #eee;
}

.dropdown li:last-child a {
    border-bottom: none;
}

.dropdown li a:hover {
    background: #f8f8f8;
    color: #667eea;
    padding-left: 2rem;
}



@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }
    
    .container {
        margin: 1.5rem;
        padding: 1.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
	
	
	.nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > li {
        width: 100%;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        background: #f8f8f8;
    }

    .nav-menu > li:hover .dropdown {
        display: none;
    }

    .nav-menu > li.active .dropdown {
        display: block;
    }
	
	
}