@FONT-FACE {
	font-family: "per_font";
	src: url(../font/Sans.woff) format("truetype");
	font-display: swap;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: per_font;
}

body {
	background-color: #f5f5f5;
	color: #333;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

header {
	background-color: #e1e1e1;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: solid thin gray;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo-div{
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	
}
.logo-img{
	width: 70px;
	height: auto;
}
.logo-1 {
	font-size: 24px;
	font-weight: bolder;
	color: green;
	margin-right: 10px;
	text-shadow:1px 1px 2px #000;
}
.logo-2 {
	font-size: 24px;
	font-weight: bolder;
	color: white;
	margin-right: 5px;
	text-shadow:1px 1px 2px #000;
}
.logo-3 {
	font-size: 24px;
	font-weight: bolder;
	color: red;
	margin-right: 10px;
	text-shadow:1px 1px 2px #000;
}
nav ul {
	display: flex;
	list-style: none;
}

nav ul li {
	margin-right: 20px;
}

nav ul li a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s;
}

nav ul li a:hover {
	color: #4a6bff;
}

.hero {
		background: linear-gradient(135deg, #4a6bff, #6a11cb);
	
	color: white;
	padding: 80px 0;
	text-align: center;
}

.hero h1 {
	font-size: 36px;
	margin-bottom: 20px;
}

.hero p {
	font-size: 18px;
	margin-bottom: 30px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
.menu-a{
line-height: 40px;
	white-space: nowrap;
}
.btn {
	display: inline-block;
	background-color: #fff;
	color: #4a6bff;
	padding-left:30px;
	padding-right:30px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
	height: 40px;
	line-height: 40px;
	margin-top: 0px;
}

.btn:hover {
	background-color: #f0f0f0;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.features {
	padding: 80px 0;
	background-color: #fff;
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
}

.section-title h2 {
	font-size: 32px;
	color: #333;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.feature-card {
	background-color: #f9f9f9;
	border-radius: 10px;
	padding: 30px;
	text-align: center;
	transition: transform 0.3s;
	border: solid thin gray;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	font-size: 40px;
	color: #4a6bff;
	margin-bottom: 20px;
}

.feature-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
}

.pricing {
	padding: 80px 0;
	background-color: #f5f5f5;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.pricing-card {
	background-color: #fff;
	border-radius: 10px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pricing-card.popular {
	border: 2px solid #4a6bff;
	position: relative;
}
.pricing-card.nopopular {
	border: 1px solid gray;
	position: relative;
}
.popular-badge {
	position: absolute;
	top: -15px;
	right: 20px;
	background-color: #4a6bff;
	color: white;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 14px;
}

.pricing-card h3 {
	font-size: 24px;
	margin-bottom: 20px;
}

.price {
	font-size: 36px;
	font-weight: bold;
	color: #4a6bff;
	margin-bottom: 20px;
}

.price span {
	font-size: 16px;
	color: #777;
}

.pricing-features {
	list-style: none;
	margin-bottom: 30px;
}

.pricing-features li {
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

.faq {
	padding: 80px 0;
	background-color: #fff;
}

.accordion {
	max-width: 800px;
	margin: 0 auto;
}

.accordion-item {
	margin-bottom: 15px;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.accordion-header {
	background-color: #f9f9f9;
	padding: 15px 20px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 500;
}

.accordion-header:hover {
	background-color: #f0f0f0;
}

.accordion-content {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	background-color: #fff;
}

.accordion-content p {
	padding: 20px 0;
}

footer {
	background-color: #222;
	color: #fff;
	padding: 50px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin-bottom: 30px;
}

.footer-column h3 {
	font-size: 18px;
	margin-bottom: 20px;
	color: #4a6bff;
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 10px;
}

.footer-column ul li a {
	color: #bbb;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-column ul li a:hover {
	color: #4a6bff;
}

.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #444;
	color: #bbb;
	font-size: 14px;
}

@media ( max-width : 768px) {
	.header-content {
		flex-direction: column;
	}
	nav ul {
		margin-top: 20px;
	}
	.hero h1 {
		font-size: 28px;
	}
	.hero p {
		font-size: 16px;
	}
}