* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

/* Header */
.header {
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	color: white;
	padding: 1rem 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2rem;
}

.header__logo {
	max-width: 150px;
	z-index: 1000;
}
.header__logo img {
	width: 100%;
	height: auto;
}

.header__nav {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.header__nav.active {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	flex-direction: column;
}

.header__nav-link {
	color: white;
	text-decoration: none;
	transition: color 0.3s ease;
	position: relative;
}

.header__nav-link:hover {
	color: #4fc3f7;
}

.header__nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background-color: #4fc3f7;
	transition: width 0.3s ease;
}

.header__nav-link:hover::after {
	width: 100%;
}

.header__burger {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.header__burger-line {
	width: 25px;
	height: 3px;
	background: white;
	margin: 3px 0;
	transition: 0.3s;
}

/* Hero Section */
.hero {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 70vh;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 72px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80')
		center/cover;
	opacity: 0.2;
}

.hero__container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero__title {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	animation: fadeInUp 1s ease;
}

.hero__subtitle {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	animation: fadeInUp 1s ease 0.2s both;
}

.hero__button {
	display: inline-block;
	background: linear-gradient(45deg, #4fc3f7, #29b6f6);
	color: white;
	padding: 15px 40px;
	text-decoration: none;
	border-radius: 30px;
	font-weight: bold;
	transition: all 0.3s ease;
	animation: fadeInUp 1s ease 0.4s both;
	box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.hero__button:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

/* Crypto Exchange Section */
.crypto-exchange {
	padding: 80px 0;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.crypto-exchange__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.crypto-exchange__content {
	padding: 2rem 0;
}

.crypto-exchange__title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.crypto-exchange__subtitle {
	font-size: 1.2rem;
	color: #666;
	line-height: 1.6;
}

.crypto-exchange__form-wrapper {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.crypto-exchange__form-row {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 1rem;
	align-items: end;
	margin-bottom: 2rem;
}

.crypto-exchange__form-group {
	margin-bottom: 1.5rem;
}

.crypto-exchange__label {
	display: block;
	margin-bottom: 0.5rem;
	color: #2c3e50;
	font-weight: bold;
	font-size: 0.9rem;
}

.crypto-exchange__input-group {
	display: flex;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	overflow: hidden;
	transition: border-color 0.3s ease;
}

.crypto-exchange__input-group:focus-within {
	border-color: #4fc3f7;
}

.crypto-exchange__input {
	flex: 1;
	padding: 15px;
	border: none;
	font-size: 1.1rem;
	outline: none;
	background: transparent;
}

.crypto-exchange__select {
	padding: 15px;
	border: none;
	background: #f8f9fa;
	font-size: 1rem;
	font-weight: bold;
	color: #2c3e50;
	cursor: pointer;
	outline: none;
	min-width: 80px;
}

.crypto-exchange__swap-button {
	display: flex;
	align-items: center;
	justify-content: center;
}

.crypto-exchange__swap {
	width: 50px;
	height: 50px;
	border: none;
	background: linear-gradient(45deg, #4fc3f7, #29b6f6);
	color: white;
	border-radius: 50%;
	font-size: 1.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.crypto-exchange__swap:hover {
	transform: rotate(180deg) scale(1.1);
	box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

.crypto-exchange__balance,
.crypto-exchange__rate {
	font-size: 0.8rem;
	color: #666;
	margin-top: 0.5rem;
}

.crypto-exchange__info {
	background: #f8f9fa;
	padding: 1rem;
	border-radius: 10px;
	margin-bottom: 1.5rem;
}

.crypto-exchange__info-item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

.crypto-exchange__info-item:last-child {
	margin-bottom: 0;
	font-weight: bold;
	color: #2c3e50;
}

.crypto-exchange__submit {
	width: 100%;
	background: linear-gradient(45deg, #4fc3f7, #29b6f6);
	color: white;
	padding: 15px;
	border: none;
	border-radius: 12px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.crypto-exchange__submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

/* FAQ Section */
.faq {
	padding: 80px 0;
	background: white;
}

.faq__container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 2rem;
}

.faq__title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #2c3e50;
}

.faq__accordion {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.faq__item {
	border: 2px solid #e0e0e0;
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq__item.active {
	border-color: #4fc3f7;
	box-shadow: 0 5px 20px rgba(79, 195, 247, 0.1);
}

.faq__question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 2rem;
	background: #f8f9fa;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.faq__question:hover {
	background: #e9ecef;
}

.faq__item.active .faq__question {
	background: #4fc3f7;
	color: white;
}

.faq__question h3 {
	font-size: 1.1rem;
	margin: 0;
	color: #2c3e50;
}

.faq__item.active .faq__question h3 {
	color: white;
}

.faq__toggle {
	font-size: 1.5rem;
	font-weight: bold;
	color: #4fc3f7;
	transition: transform 0.3s ease;
}

.faq__item.active .faq__toggle {
	transform: rotate(45deg);
	color: white;
}

.faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
	max-height: 200px;
}

.faq__answer p {
	padding: 1.5rem 2rem;
	margin: 0;
	color: #666;
	line-height: 1.6;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
	.crypto-exchange__container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.crypto-exchange__form-row {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.crypto-exchange__swap-button {
		order: 2;
		margin: 1rem 0;
	}

	.crypto-exchange__swap {
		transform: rotate(90deg);
	}

	.crypto-exchange__swap:hover {
		transform: rotate(270deg) scale(1.1);
	}

	.faq__question {
		padding: 1rem 1.5rem;
	}

	.faq__answer p {
		padding: 1rem 1.5rem;
	}
}

@media (max-width: 480px) {
	.crypto-exchange__title {
		font-size: 2rem;
	}

	.crypto-exchange__form-wrapper {
		padding: 1.5rem;
	}

	.faq__title {
		font-size: 2rem;
	}
}

/* Services Section */
.services {
	padding: 80px 0;
	background: #f8f9fa;
}

.services__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.services__title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #2c3e50;
}

.services__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.services__card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	text-align: center;
}

.services__card:hover {
	transform: translateY(-10px);
}

.services__card-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: #4fc3f7;
}

.services__card-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.services__card-description {
	color: #666;
	line-height: 1.6;
}

/* About Section */
.about {
	padding: 80px 0;
	background: white;
}

.about__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about__content {
	padding: 2rem 0;
}

.about__title {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #2c3e50;
}

.about__text {
	font-size: 1.1rem;
	color: #666;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.about__image {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Statistics Section */
.stats {
	padding: 80px 0;
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	color: white;
}

.stats__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.stats__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	text-align: center;
}

.stats__item {
	padding: 2rem;
}

.stats__number {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
	color: #4fc3f7;
}

.stats__label {
	font-size: 1.2rem;
	opacity: 0.9;
}

/* Advantages Section */
.advantages {
	padding: 80px 0;
	background: #f8f9fa;
}

.advantages__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.advantages__title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #2c3e50;
}

.advantages__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.advantages__item {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease;
}

.advantages__item:hover {
	transform: translateY(-5px);
}

.advantages__icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #4fc3f7;
}

.advantages__item-title {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.advantages__item-text {
	color: #666;
	line-height: 1.6;
}

/* Contact Section */
.contact {
	padding: 80px 0;
	background: white;
}

.contact__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.contact__info {
	padding: 2rem 0;
}

.contact__title {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #2c3e50;
}

.contact__item {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}

.contact__icon {
	font-size: 1.5rem;
	color: #4fc3f7;
	margin-right: 1rem;
	width: 30px;
}

.contact__text {
	font-size: 1.1rem;
	color: #666;
}

.contact__form {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 15px;
}

.contact__form-group {
	margin-bottom: 1.5rem;
}

.contact__form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: #2c3e50;
	font-weight: bold;
}

.contact__form-input {
	width: 100%;
	padding: 12px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.contact__form-input:focus {
	outline: none;
	border-color: #4fc3f7;
}

.contact__form-textarea {
	resize: vertical;
	min-height: 120px;
}

.contact__form-button {
	background: linear-gradient(45deg, #4fc3f7, #29b6f6);
	color: white;
	padding: 15px 40px;
	border: none;
	border-radius: 30px;
	font-size: 1rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.contact__form-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

/* Footer */
.footer {
	background: #2c3e50;
	color: white;
	padding: 3rem 0 1rem;
}

.footer__logo {
	width: 150px;
}
.footer__logo img {
	width: 150px;
}

.footer__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.footer__content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer__section-title {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #4fc3f7;
}

.footer__text {
	color: #bbb;
	line-height: 1.6;
}

.footer__link {
	color: #bbb;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer__link:hover {
	color: #4fc3f7;
}

.footer__bottom {
	border-top: 1px solid #34495e;
	padding-top: 2rem;
	text-align: center;
	color: #bbb;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.header__nav {
		display: none;
	}

	.header__burger {
		display: flex;
		position: relative;
		z-index: 1000;
	}

	.hero__title {
		font-size: 2.5rem;
	}

	.hero__subtitle {
		font-size: 1.1rem;
	}

	.about__container {
		grid-template-columns: 1fr;
	}

	.contact__container {
		grid-template-columns: 1fr;
	}

	.services__grid {
		grid-template-columns: 1fr;
	}

	.advantages__grid {
		grid-template-columns: 1fr;
	}

	.stats__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.hero__title {
		font-size: 2rem;
	}

	.services__title,
	.about__title,
	.advantages__title,
	.contact__title {
		font-size: 2rem;
	}

	.stats__grid {
		grid-template-columns: 1fr;
	}
}
