*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
body {
	background-color: #000000 !important;
}
.logo {
    width: 100px;
    height: 60px;
}
.action-logo{
	height: 140px;
	width: 260px;
}
.summary {
	margin-top: 20px;
	color: #1cd9a7;
	font-size: 18px;
}
.buttons {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.buttons a {
	padding: 12px 20px;
	border: none;
	border-radius: 30px;
	background-color: #ff6a00;
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	transition: 0.3s;
	text-align: center;
}
.buttons a:hover {
	background-color: #1e88e5;
	color: #fff;
	transform: scale(1.05);
}

.coustom-login-btn{
	border: 5px 5px solid red;
}

.right-section {
	background-color: #fff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	margin-top: 40px;
}
.info-box img {
   width: 100%;
   height: 295px;
   object-fit: cover;
}

.footer-links a {
	color: white;
	text-decoration: none;
	font-size: 18px;
	margin: 0 14px;
	position: relative;
}
.footer-links a:hover::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: white;
}
.footer-copy {
	background-color: #0d47a1;
	color: white;
	text-align: center;
	font-size: 14px;
	padding: 10px;
}

@media (max-width: 768px) {
    .summary{
		display: none;
	}
	.info-box {
		padding: 10px;
	}
	.action-logo{
		height: 200px;
		width: 100%;
		object-fit: cover;
	}
	.info-box img {
	   width: 100%;
	   height: 100%;
	   object-fit: cover;
	}
}


/* privacy Policy & About */
.privacy-section, .about-section{
	max-width: 900px;
	margin: 60px auto;
	background-color: #1e293b;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 0 15px rgba(0,0,0,0.5);
}
.privacy_heading, .about_heading{
	color: #10b981;
}
.privacy_pragraph, .about_pragraph{
	line-height: 1.8;
}
p.about_pragraph, p.privacy_pragraph, .peivacy-list li{
    color: #ffffff;
}