@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--color-primary: #ffdf2c;
	--color-secondary: #ffe863;
	--color-tertiary: #be0704;
	--rounded-xl: 40px;
	--rounded-lg: 30px;
	--rounded-md: 15px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Poppins', sans-serif;
}

/* Utilidades */
.container {
	max-width: 1200px;
	margin: 0 auto;

	@media (max-width: 1024px) {
		margin: 0 20px;
	}

	@media (max-width: 768px) {
		margin: 0 15px;
	}
}

.container-img img {
	width: 1%;
}


/* Globales */
.btn {
	background-color: #000;
	color: #fff;
	font-family: inherit;
	font-weight: 600;
	border: none;
	padding: 20px 70px;
	border-radius: var(--rounded-md);

	@media (max-width: 768px) {
		padding: 20px 40px;
	}
}

.time {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #686b6b;
	line-height: 0;

	i {
		color: #000;
		font-size: 16px;
	}
}

.category {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #686b6b;
	line-height: 0;

	i {
		color: #000;
		font-size: 16px;
	}
}

h2 {
	font-size: 45px;
	font-weight: 600;

	@media (max-width: 768px) {
		text-align: center;
		font-size: 35px;
		line-height: 40px;
	}
}

.logo {
	a {
		font-family: 'Lobster';
		text-decoration: none;
		color: #000;
		font-size: 30px;
	}
}

/* ********************************** */
/*               HEADER               */
/* ********************************** */

header {
	border-bottom: 1px solid white;
	padding: 30px 50px;

	display: flex;
	justify-content: space-between;
	align-items: center;

	button {
		border: none;
		background: none;
		outline: none;

		i {
			font-size: 22px;
		}

		@media (min-width: 768px) {
			display: none;
		}
	}

	@media (max-width: 768px) {
		padding: 30px;
	}
}

.navigation-header {
	display: flex;
	gap: 40px;

	a {
		text-decoration: none;
		color: #000;
		font-weight: 500;

		&:hover {
			text-decoration: underline;
		}
	}

	@media (max-width: 768px) {
		display: none;
	}
}

.social-links {
	display: flex;
	gap: 25px;

	li {
		list-style: none;
	}

	a {
		text-decoration: none;
		color: #000;

		i {
			font-size: 22px;
		}
	}

	@media (max-width: 768px) {
		display: none;
	}
}

.menu-mobile {
	display: flex;
	gap: 70px;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	position: fixed;
	top: 0;
	left: 0;
	background-color: #fff;
	z-index: 9999;
	height: 100%;
	width: 100%;
	clip-path: circle(0% at top left);
	transition: clip-path 0.5s ease-in-out;

	.btn-close {
		position: absolute;
		top: 40px;
		right: 40px;
		cursor: pointer;
		background: none;
		outline: none;
		border: none;

		i {
			font-size: 22px;
		}
	}

	.logo {
		a {
			font-size: 40px;
		}
	}

	.navigation-mobile {
		display: flex;
		flex-direction: column;
		gap: 15px;

		a {
			text-decoration: none;
			color: #333;
			font-weight: 500;
			text-align: center;
			font-size: 22px;
		}
	}

	.social-links {
		display: flex;
		gap: 30px;

		i {
			font-size: 26px;
		}
	}
}

.menu-mobile.active {
	clip-path: circle(150% at top left);
}

/* ********************************** */
/*             BANNER HERO            */
/* ********************************** */
.section-banner-hero {
	display: flex;
	gap: 30px;
	background-color: var(--color-primary);
	border-radius: var(--rounded-xl);
	overflow: hidden;

	margin-top: 80px;
	margin-bottom: 50px;

	.content {
		flex: 1;
		padding: 50px;
		display: flex;
		flex-direction: column;
		gap: 15px;

		h1 {
			font-size: 50px;
			font-weight: 600;
			line-height: 55px;
		}

		p {
			color: #ffffff;
			line-height: 24px;
			padding-right: 35px;
			margin: 10px 0 30px;
		}

		.badges {
			align-self: center;
			display: flex;
			gap: 40px;

			span {
				display: flex;
				align-items: center;
				gap: 15px;

				font-weight: 700;
				font-size: 14px;
				background-color: #f2f19a;
				padding: 8px 20px;
				border-radius: 1000px;
				line-height: 0;

				i {
					font-size: 16px;
				}
			}
		}

		button {
			background-color: #000;
			color: #fff;
			border: none;
			padding: 20px 50px;
			margin-top: 30px;
			cursor: pointer;
			border-radius: var(--rounded-md);
			font-family: inherit;
			font-weight: 600;

			display: flex;
			align-items: center;
			align-self: center;
			gap: 15px;

			i {
				font-size: 20px;
			}
		}
	}

	.badge-hot-recipes {
		background-color: #fff;
		color: #333;
		font-size: 16px;
		font-weight: 600;
		padding: 10px 30px;
		border-radius: 1000px;
		letter-spacing: -0.5px;

		align-self: flex-start;
		display: flex;
		align-items: center;
		gap: 15px;
	}

	.container-img {
		flex: 1;
	}

	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	@media (max-width: 768px) {
		flex-direction: column;
		gap: 0;

		.content {
			padding: 20px;

			.badge-hot-recipes {
				font-size: 13px;
			}

			h1 {
				font-size: 40px;
				line-height: 45px;
			}

			p {
				display: none;
			}

			.badges {
				gap: 20px;
				align-self: flex-start;
				margin: 15px 0;
			}

			button {
				margin-top: 0;
				margin-bottom: 10px;
			}
		}

		.container-img {
			order: -1;
		}
	}
}

/* ********************************** */
/*         SECCIÓN CATEGORIAS         */
/* ********************************** */

.section-categories {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-bottom: 100px;
}
.section-categories .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-categories .header .btn-all-categories {
  text-decoration: none;
  background-color: var(--color-primary);
  color: #000;
  font-weight: 600;
  padding: 15px 25px;
  border-radius: var(--rounded-md);
  transition: background-color 0.3s ease;
}
.section-categories .header .btn-all-categories:hover {
  background-color: var(--color-primary-dark);
}
.section-categories .list-card-categories {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  padding-top: 60px;
}
.section-categories .card-category {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 300px;
  padding-bottom: 50px;
  position: relative;
  height: 200px;
  border-radius: var(--rounded-lg);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  overflow: visible;
}
.section-categories .card-category img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  position: absolute;
  top: -60px;
  left: 0;
  border-radius: var(--rounded-lg) var(--rounded-lg) 0 0;
  transition: all 0.3s ease-in;
}
.section-categories .card-category:hover img {
  top: -80px;
}
.section-categories .card-category p {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  margin: 0;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .section-categories .list-card-categories {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 30px;
    padding-left: 20px;
    padding-right: 20px;
    justify-content: center;
    padding-top: 70px;
  }
  .section-categories .list-card-categories::-webkit-scrollbar {
    display: none;
  }
  .section-categories .card-category {
    flex: 0 0 auto;
    scroll-snap-align: center;
    min-width: 340px;
    height: 260px;
    padding-bottom: 70px;
  }
  .section-categories .card-category img {
    height: 200px;
    top: -70px;
  }
}
@media (max-width: 480px) {
  .section-categories .card-category {
    min-width: 320px;
    height: 280px;
    padding-bottom: 70px;
  }
  .section-categories .card-category img {
    height: 220px;
    top: -80px;
  }
  .section-categories .card-category p {
    font-size: 20px;
  }
}



/* ********************************** */
/*            MAIN RECETAS            */
/* ********************************** */
main {
	display: flex;
	flex-direction: column;
	gap: 25px;
	align-items: center;

	p {
		width: 75%;
		text-align: center;
		font-size: 18px;
		font-weight: 400;
		color: #474d50;
	}

	@media (max-width: 768px) {
		p {
			width: 100%;
			font-size: 14px;
		}
	}
}

.list-card-recipes {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;

	margin-top: 50px;

	.card-recipe {
		background: linear-gradient(to bottom, #fff 25%, #fdfeec);
		padding: 0 10px;
		border-radius: var(--rounded-md);

		display: flex;
		flex-direction: column;
		gap: 15px;

		.content {
			display: flex;
			flex-direction: column;
			gap: 25px;

			padding: 0 20px;
			padding-bottom: 35px;
		}

		.container-img {
			position: relative;
			overflow: hidden;
			border-radius: var(--rounded-md);

			img {
				width: 100%;
				height: 215px;
				object-fit: cover;
				border-radius: var(--rounded-md);
				transition: all 0.3s ease-in-out;
			}

			&:hover img {
				transform: scale(1.05);
			}

			.btn-favorite {
				background-color: white;
				border: none;
				border-radius: 50%;
				width: 30px;
				height: 30px;
				position: absolute;
				top: 15px;
				right: 15px;
				cursor: pointer;

				display: flex;
				justify-content: center;
				align-items: center;

				i {
					font-size: 16px;
					color: #d40d0d;
					transition: all 0.3s;
				}

				i.active {
					color: #fc6260;
				}

				@media (hover: hover) and (pointer: fine) {
					&:hover i {
						color: #fc6260;
					}
				}
			}
		}

		.footer {
			display: flex;
			align-items: center;

			gap: 35px;
		}
	}

	.card-message {
		background-color: #306a50;
		border-radius: var(--rounded-md);

		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 15px;

		p {
			color: #fff;
			font-size: 18px;
			line-height: 30px;
			width: 50%;
			font-family: 'Lobster', sans-serif;
		}

		img {
			object-fit: cover;
		}
	}

	@media (max-width: 768px) {
		grid-template-columns: 1fr;

		.card-recipe {
			.container-img {
				img {
					height: 250px;
				}
			}
		}

		.card-message {
			padding: 20px;

			img {
				height: 150px;
			}
		}
	}
}

/* ********************************** */
/*            SECCIÓN CHEF            */
/* ********************************** */
.section-chef {
	display: flex;
	align-items: center;

	margin-top: 30px;

	.content {
		display: flex;
		flex-direction: column;
		gap: 30px;
		flex: 1;

		button {
			align-self: flex-start;
		}
	}

	.container-img {
		flex: 1;

		img {
			width: 100%;
		}
	}

	@media (max-width: 768px) {
		flex-direction: column;
		gap: 30px;

		h2 {
			font-size: 35px;
			text-align: center;
			line-height: 35px;
		}

		.content {
			width: 80%;
			align-items: center;

			button {
				align-self: center;
			}
		}

		.container-img {
			order: -1;

			img {
				height: 300px;
			}
		}
	}
}

/* ********************************** */
/*           POSTS INSTAGRAM          */
/* ********************************** */
.section-posts-instagram {
	background: linear-gradient(to bottom, #fff 25%, #f8f3b0);
	padding: 20px 0 40px 0;
	margin-bottom: 60px;
}

.section-instagram {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;


	h2 {
		width: 80%;
		text-align: center;
		line-height: 55px;

		span {
			color: var(--color-tertiary);
		}
	}

	p {
		width: 60%;
		text-align: center;
	}

	.list-posts-instagram {
		display: grid;
		gap: 25px;
		grid-template-columns: repeat(4, 1fr);

		margin-top: 30px;

		.card-img {
			img {
				width: 100%;
			}
		}
	}

	@media (max-width: 768px) {
		margin-bottom: 0;

		p {
			width: 100%;
			font-size: 14px;
		}

		.list-posts-instagram {
			padding: 0 10px;
			display: flex;
			overflow-x: auto;
			scroll-snap-type: x mandatory;
			-webkit-overflow-scrolling: touch;
			scrollbar-width: none;
			-ms-overflow-style: none;

			&::-webkit-scrollbar {
				display: none;
			}
		}

		.card-img {
			flex: 0 0 80%;
			scroll-snap-align: center;

			img {
				object-fit: contain;
			}
		}
	}
}

/* ********************************** */
/*    SECCIÓN MÁS CARDS DE RECETAS    */
/* ********************************** */
.section-more-recipes {
	display: flex;
	flex-direction: column;
	gap: 25px;
	align-items: center;

	p {
		width: 75%;
		text-align: center;
		font-size: 18px;
		font-weight: 400;
		color: #474d50;
	}

	.list-card-recipes {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 30px;

		margin-top: 50px;

		.card-recipe {
			border-radius: var(--rounded-md);

			display: flex;
			flex-direction: column;
			gap: 15px;

			.content {
				display: flex;
				flex-direction: column;
				gap: 25px;

				padding-bottom: 35px;
			}

			.container-img {
				position: relative;
				overflow: hidden;
				border-radius: var(--rounded-md);

				img {
					width: 100%;
					height: 190px;
					object-fit: cover;
					border-radius: var(--rounded-md);
					transition: all 0.3s ease-in-out;
				}

				&:hover img {
					transform: scale(1.05);
				}

				.btn-favorite {
					background-color: white;
					border: none;
					border-radius: 50%;
					width: 30px;
					height: 30px;
					position: absolute;
					top: 15px;
					right: 15px;
					cursor: pointer;

					display: flex;
					justify-content: center;
					align-items: center;

					i {
						font-size: 16px;
						color: #dbe1e6;
						transition: all 0.3s;
					}

					i.active {
						color: #000000;
					}

					&:hover i {
						color: #000000;
					}
				}
			}

			.footer {
				display: flex;
				align-items: center;

				gap: 35px;
			}
		}

		@media (max-width: 1024px) {
			grid-template-columns: repeat(2, 1fr);
		}

		@media (max-width: 768px) {
			grid-template-columns: repeat(1, 1fr);

			.card-recipe {
				.container-img {
					img {
						height: 250px;
					}
				}
			}
		}
	}
}

/* ********************************** */
/*             NEWSLETTER             */
/* ********************************** */
.section-newsletter {
	margin: 120px auto;
	height: 550px;
	border-radius: var(--rounded-xl);
	background-color: var(--color-secondary);

	display: flex;
	flex-direction: column;
	gap: 30px;
	justify-content: center;
	align-items: center;

	p {
		width: 60%;
		text-align: center;
	}

	.container-input {
		display: flex;
		gap: 30px;

		padding: 10px;
		border-radius: 15px;
		background-color: white;
		width: 700px;
		margin-top: 40px;

		input {
			flex: 1;

			border: none;
			outline: none;
			font-weight: 500;
			margin-left: 35px;
			font-family: inherit;
		}

		@media (max-width: 768px) {
			width: 100%;
			gap: 20px;
			margin-top: 0;

			flex-direction: column;

			input {
				margin-left: 15px;
			}

			button {
				width: 100%;
				padding: 15px 0;
			}
		}
	}

	@media (max-width: 768px) {
		height: 400px;
		padding: 0 20px;
		gap: 20px;

		h2 {
			text-align: center;
			font-size: 35px;
		}

		p {
			width: 100%;
			text-align: center;
		}
	}
}

/* ********************************** */
/*               FOOTER               */
/* ********************************** */
footer {
	display: flex;
	flex-direction: column;

	.first-section {
		display: flex;
		justify-content: space-between;
		padding-bottom: 30px;
		border-bottom: 3px solid #000000;

		@media (max-width: 768px) {
			flex-direction: column;
			align-items: center;
			gap: 20px;
		}
	}

	.second-section {
		padding: 30px 0;
		display: flex;
		justify-content: space-between;

		.copyright {
			font-size: 18px;
		}

		span {
			color: var(--color-tertiary);
		}

		.social-links {
			display: flex;
		}

		@media (max-width: 768px) {
			flex-direction: column;
			align-items: center;
			gap: 20px;

			.copyright {
				font-size: 16px;
				text-align: center;
			}
		}
	}
}

.navigation-footer {
	display: flex;
	gap: 30px;

	a {
		text-decoration: none;
		color: #000;
		font-weight: 500;

		&:hover {
			text-decoration: underline;
		}
	}
}


.highlight {
	color: var(--color-primary);
	font-weight: bold;
}

.section-banner-hero {
	background: linear-gradient(to right, #0f0f0f, #1a1a1a);
	color: white;
	padding: 50px 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.section-banner-hero img {
	max-width: 500px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.section-categories .card-category:hover {
	transform: scale(1.05);
	transition: 0.3s;
}

button.cta {
	background: var(--color-secondary);
	color: rgb(5, 5, 5);
	padding: 15px 25px;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	cursor: pointer;
}

button.cta:hover {
	background: var(--color-primary);
	color: rgb(5, 5, 5);
}

.section-reviews {
	margin-top: 100px;

	h2 {
		color: var(--green-medium);
		text-align: center;
	}

	.subtitle {
		text-align: center;
		margin-top: 15px;
		font-size: 14px;
	}
}

.carousel-reviews {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 80px;
	position: relative;

	.slider-button {
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: #fff;
		box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
		width: 35px;
		height: 35px;
		border-radius: 50%;
		position: absolute;

		i {
			font-size: 16px;
		}
	}

	.slider-button.prev {
		top: 50%;
		left: 100px;
	}

	.slider-button.next {
		top: 50%;
		right: 100px;
	}

	.slider-indicators {
		display: flex;
		gap: 5px;
		position: absolute;
		bottom: -60px;

		.indicator {
			width: 10px;
			height: 10px;
			border-radius: 50%;
			background-color: #f2edd3;
			cursor: pointer;
		}

		.active {
			background-color: var(--green-medium);
		}
	}
}

.card-review {
	background-color: #f2fa88;
	width: 55%;
	padding: 60px 70px;
	position: relative;
	border-radius: 10px;

	.img-review {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100px;
		height: 100px;
		border-radius: 50%;
		background-color: #fae04c;
		outline: 5px solid #ecde17;
		overflow: hidden;

		img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
	}

	.info-review {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 10px;

		p {
			font-size: 14px;
			text-align: center;
			text-transform: capitalize;
			margin-top: 30px;
		}

		.occupation {
			margin: 0;
			font-weight: 500;
		}

		.container-stars {
			display: flex;
			gap: 4px;

			i {
				color: #fcaf3d;
				font-size: 12px;
			}
		}
	}
}

.section-reviews {
	margin-bottom: 100px;
}

.chatbot-container {
	position: fixed;
	bottom: 80px;
	right: 30px;
	width: 300px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	display: none;
	flex-direction: column;
	overflow: hidden;
	z-index: 9999;
}

.chatbot-header {
	background: #f7e549;
	color: #000000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;
}

.chatbot-body {
	padding: 10px;
	height: 220px;
	overflow-y: auto;
	font-size: 14px;
}

.chat-message {
	margin-bottom: 10px;
}

.chat-message.bot {
	text-align: left;
}

.chat-message.user {
	text-align: right;
}

.chat-message p {
	background: #f0f0f0;
	padding: 8px 12px;
	border-radius: 15px;
	display: inline-block;
	max-width: 80%;
}

.chatbot-input {
	display: flex;
	padding: 10px;
	border-top: 1px solid #ddd;
}

.chatbot-input input {
	flex: 1;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 20px;
	outline: none;
}

.chatbot-input button {
	background: #070707;
	color: #fff;
	border: none;
	padding: 8px 12px;
	margin-left: 5px;
	border-radius: 20px;
	cursor: pointer;
}

#chatbot-button {
	position: fixed;
	bottom: 20px;
	right: 30px;
	background-color: #000000;
	color: white;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	font-size: 20px;
	cursor: pointer;
	z-index: 9999;
}

#chatbot-toggle {
	background: transparent;
	border: none;
	color: rgb(0, 0, 0);
	font-size: 18px;
	cursor: pointer;
}


.card-actions button {
	width: 100%;
	height: 40px;
	border-radius: 0.5rem;
	background-color: #ffea70; 
	color: #000;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
}

.card-actions button:hover {
	background-color: #000; 
	color: #fff; 
	transform: scale(1.05);
}


.video-ajustado {
	width: 300px;
	height: 500px;
	object-fit: cover;
	border-radius: 12px;

}

.registro-body {
	font-family: 'Poppins', sans-serif;
	background: #fff;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80vh;
}

.registro-container {
	width: 100%;
	max-width: 500px;
	padding: 20px;
	border-radius: 15px;

	background: #ffffff;
}

.registro-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
	text-align: left;
	color: #222;
}

.registro-input {
	width: 100%;
	padding: 12px;
	margin-bottom: 15px;
	border: 2px solid #ccc;
	border-radius: 15px;
	font-size: 14px;
	box-sizing: border-box;
	display: block;
}

.registro-button {
	width: 100%;
	padding: 12px;
	box-sizing: border-box;
	border-radius: 15px;
	background-color: #ffdf2c;
	color: #000;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	border: none;
	display: block;
	transition: background-color 0.3s ease;
	border: 2px solid #000;
}

.registro-button:hover {
	background-color: #ffe863;
}

.registro-footer {
	margin-top: 15px;
	font-size: 12px;
	text-align: center;
	color: #666;
}

.registro-footer a {
	color: #000;
	text-decoration: underline;
}

.registro-label {
	font-size: 0.9rem;
}

.registro-links {
	text-align: left;
	margin-bottom: 20px;
	font-size: 14px;
}

.registro-links a {
	color: #000;
	text-decoration: underline;
	margin: 10 5px;
}
.registro-links a:hover {
	color: #e46f5a;
	text-decoration: underline;
	margin: 10 5px;
}


		.preply-container {
			max-width: 1200px;
			margin: 0 auto;
			padding: 40px 20px;
			font-family: 'Arial', sans-serif;
		}

		.preply-title {
			font-size: 40px;
			font-weight: bold;
			margin-bottom: 40px;
			color: #000;
		}

		.preply-steps {
			display: flex;
			gap: 20px;
			flex-wrap: wrap;
		}

		.preply-step {
			border: 1px solid #ccc;
			border-radius: 8px;
			padding: 20px;
			flex: 1;
			min-width: 300px;
			background-color: #fff;
		}

		.preply-badge {
			font-size: 18px;
			font-weight: bold;
			padding: 10px 15px;
			border-radius: 90px;
			display: inline-block;
			margin-bottom: 10px;
		}

		.preply-badge1 {
			background-color: #fff01b;
			color: #000;
		}

		.preply-badge2 {
			background-color: #fff12e;
			color: #000;
		}

		.preply-badge3 {
			background-color: #fffd7e;
			color: #000000;
		}

		.preply-step-title {
			font-size: 24px;
			margin: 10px 0;
		}

		.preply-step-text {
			font-size: 16px;
			margin-bottom: 20px;
		}

		.preply-teacher-card,
		.preply-teacher-mini {
			display: flex;
			gap: 10px;
			align-items: flex-start;
			margin-bottom: 10px;
			background: #f9f9f9;
			padding: 10px;
			border-radius: 6px;
		}

		.preply-teacher-img {
			width: 60px;
			height: 60px;
			object-fit: cover;
			border-radius: 50%;
		}

		.preply-teacher-info {
			font-size: 14px;
		}

		.preply-rating {
			float: right;
			font-weight: bold;
		}

		.preply-image {
			width: 100%;
			border-radius: 8px;
			object-fit: cover;
		}

		.preply-teacher-mini-list {
			display: flex;
			flex-direction: column;
			gap: 10px;
		}

    .form-wrapper {
      font-family: 'Inter', sans-serif;
      background: #fff;
      color: #111;
      max-width: 1200px;
      margin: 0px auto;
      padding: 0px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }

    .form-left {
      flex: 1 1 400px;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .form-video {
      width: 100%;
      max-width: 380px;
      border-radius: 10px;
      object-fit: cover;
      display: block;
    }

    .form-right {
      flex: 1 1 400px;
      padding: 20px;
    }

    .form-title {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .form-box {
      display: flex;
      flex-direction: column;
    }

    .form-label {
      margin: 10px 0 5px;
      font-size: 14px;
    }

    .form-input,
    .form-select {
      padding: 12px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 8px;
    }

    .form-phone {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .form-flag {
      width: 24px;
      height: auto;
    }

    .form-button {
      margin-top: 20px;
      padding: 15px;
      font-size: 16px;
      font-weight: bold;
      background-color: #fffc5c;
      color: rgb(0, 0, 0);
      border: none;
      border-radius: 10px;
      cursor: pointer;
    }

    .form-button:hover {
      background-color: #f8f79d;
    }

    .form-note {
      font-size: 12px;
      margin-top: 10px;
    }

    .form-note a {
      color: #111;
      text-decoration: underline;
    }
	 .form-note a:hover {
      color: #ff8282;
      text-decoration: underline;
    }

    @media screen and (max-width: 768px) {
      .form-wrapper {
        flex-direction: column;
        padding: 10px;
      }

      .form-left, .form-right {
        padding: 10px;
      }

      .form-title {
        font-size: 28px;
      }
    }
 .footer-container {
	display: flex;
	flex-direction: column;
	background-color: #000; 
	color: #fff; 
	padding: 3px;

	.footer-top {
		display: flex;
		justify-content: space-between;
		padding-bottom: 3px;


		@media (max-width: 768px) {
			flex-direction: column;
			align-items: center;
			gap: 20px;
		}
	}

	.footer-bottom {
		padding: 30px 0;
		display: flex;
		justify-content: space-between;
		align-items: center;

		.footer-copyright {
			font-size: 18px;
			color: #fff;
		}

		.footer-social-links {
			display: flex;
			gap: 15px;
			list-style: none;
			padding: 0;
			margin: 0;
				margin-right: 121px;

			a {
				color: #fff;
				font-size: 22px;
				transition: color 0.3s;

				&:hover {
					color: #fbff00;
				}
			}
		}

		@media (max-width: 768px) {
			flex-direction: column;
			align-items: center;
			gap: 20px;

			.footer-copyright {
				font-size: 16px;
				text-align: center;
			}
		}
	}
}
