body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden; /* ✅ prevents horizontal shifting */
}


.header {
	width: 100%;
	background-color: #fff;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	border-bottom: 2px solid #e0e0e0;
}

.logo img {
	height: 40px;
}

.website-name {
	margin-left: 10px; /* Adjust this value as needed */
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 80%; /* same size for consistency */
    margin: 20px auto;
}

.container .how-to-use {
    margin-top: 20px;
}

h1 {
	font-size: 24px;
	margin-bottom: 20px;
	text-align: center;
}

.footer {
    width: 100%;
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-top: 2px solid #e0e0e0;
    margin-top: auto; /* Pushes footer down */
    box-sizing: border-box; /* ✅ include padding/border in width */
    overflow-x: hidden;     /* ✅ no accidental scroll */
}


.footer p {
	font-size: 14px;
	color: #666;
	margin: 0;
}

.follow-us {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* ✅ prevents links from forcing width */
	margin: 20px;
}
.follow-us a {
	color: black;
	text-decoration: none;
	margin: 0 10px;
	font-size: 24px;
}

.follow-us a:hover {
	opacity: 0.7;
}
@media (max-width: 480px) {
.header {
    padding: 10px 15px;
}
.logo img, .website-name img {
    max-height: 20px;
    margin-right: 10px;
}

.menu .menu-icon .menu-img {
    width: 20px;        /* controls size */
    height: 20px;
}
/* Footer */
.footer {
    font-size: 10px;
}
.footer p {
	font-size: 10px;
}
.container {
	font-size: 10px;
}

}