/* ============================================
   LEARNING PAGE STYLES
   ============================================ */

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

body {
	font-family: 'Inter', sans-serif;
	background: #FFFFFF;
}

.container {
	max-width: 1368px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ============================================
   HEADER STYLES
   ============================================ */

header {
	background: #FFFFFF;
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.header__group {
	display: flex;
	align-items: center;
}

.header__menu {
	display: flex;
	list-style: none;
	gap: 30px;
}

.header__item {
	list-style: none;
}

.header__link {
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #1E2B69;
	text-decoration: none;
	transition: color 0.3s ease;
}

.header__link:hover {
	color: #039BE5;
}

.header__logo .logo {
	height: 50px;
	width: auto;
}

.header__social {
	display: flex;
	gap: 15px;
}

.header__social a img {
	width: 30px;
	height: 30px;
}

.header__contacts_mobile {
	display: none;
}

/* Country Dropdown */
.country-dropdown {
	position: relative;
}

.country-dropdown-btn {
	background: #039BE5;
	color: #FFFFFF;
	border: none;
	padding: 10px 20px;
	border-radius: 25px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.country-dropdown-btn:hover {
	background: #0288D1;
}

.country-dropdown-list {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #FFFFFF;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	list-style: none;
	padding: 10px 0;
	min-width: 180px;
	z-index: 10;
}

.country-dropdown:hover .country-dropdown-list {
	display: block;
}

.country-dropdown-list li {
	padding: 10px 20px;
	cursor: pointer;
	font-size: 14px;
	transition: background 0.3s ease;
}

.country-dropdown-list li:hover {
	background: #F5F5F5;
}

.country-dot {
	color: #039BE5;
	margin-right: 8px;
}

/* Burger Menu */
.burger-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(30, 43, 105, 0.95);
	z-index: 1000;
}

.burger-menu__close {
	position: absolute;
	top: 20px;
	right: 20px;
	color: #FFFFFF;
	font-size: 30px;
	cursor: pointer;
}

.burger-menu__wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.burger-menu__list {
	list-style: none;
	text-align: center;
}

.burger-menu__item {
	margin: 20px 0;
}

.burger-menu__link {
	color: #FFFFFF !important;
	font-size: 24px;
}

/* ============================================
   MAIN LEARNING PAGE STYLES
   ============================================ */

.learning-page {
	background: #FFFFFF;
	padding: 40px 0 80px;
}

.learning-page__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.learning-page__title {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 40px;
	line-height: 48px;
	color: #1E2B69;
	text-align: center;
	margin-bottom: 50px;
}

.learning-page__intro {
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 22px;
	line-height: 27px;
	color: #000000;
	text-align: justify;
	margin-bottom: 60px;
}

/* ============================================
   LEARNING SECTION STYLES
   ============================================ */

.learning-section {
	margin-bottom: 50px;
}

.learning-section__title {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 36px;
	margin-bottom: 10px;
}

.learning-section__title--blue {
	color: #039BE5;
}

.learning-section__title--teal {
	color: #37A7A7;
}

.learning-section__title--pink {
	color: #FF589B;
}

.learning-section__title--orange {
	color: #E58303;
}

.learning-section__title--green {
	color: #60C051;
}

.learning-section__title--purple {
	color: #6462DD;
}

.learning-section__title--navy {
	color: #1E2B69;
}

/* Section Dividers */
.learning-section__divider {
	width: 100%;
	height: 2px;
	margin-bottom: 30px;
}

.learning-section__divider--blue {
	background: #039BE5;
}

.learning-section__divider--teal {
	background: #37A7A7;
}

.learning-section__divider--pink {
	background: #FF589B;
}

.learning-section__divider--orange {
	background: #E58303;
}

.learning-section__divider--green {
	background: #60C051;
}

.learning-section__divider--purple {
	background: #6462DD;
}

.learning-section__divider--navy {
	background: #1E2B69;
}

/* Section Text */
.learning-section__text {
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 22px;
	line-height: 27px;
	color: #000000;
	margin-bottom: 25px;
}

/* ============================================
   LEARNING CARDS
   ============================================ */

.learning-card {
	border-radius: 25px;
	padding: 25px 30px 25px 60px;
	margin-bottom: 25px;
}

.learning-card--blue {
	background: #D3F0FF;
}

.learning-card--teal {
	background: #CDF3F3;
}

.learning-card--pink {
	background: #FDD8E7;
}

.learning-card--orange {
	background: #FFE4CA;
}

.learning-card--green {
	background: #DEFFD9;
}

.learning-card--green-outline {
	background: #FFFFFF;
	border: 3px solid #60C051;
}

.learning-card--purple {
	background: #DCDCFF;
}

.learning-card--navy {
	background: #E4F0FF;
}

/* ============================================
   LEARNING LISTS (Bullet Points)
   ============================================ */

.learning-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.learning-list li {
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 22px;
	line-height: 27px;
	color: #000000;
	padding-left: 35px;
	position: relative;
	margin-bottom: 8px;
}

.learning-list li:last-child {
	margin-bottom: 0;
}

.learning-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
}

.learning-list--blue li::before {
	background: #039BE5;
}

.learning-list--teal li::before {
	background: #37A7A7;
}

.learning-list--pink li::before {
	background: #FF589B;
}

.learning-list--orange li::before {
	background: #E58303;
}

.learning-list--green li::before {
	background: #60C051;
}

.learning-list--purple li::before {
	background: #6462DD;
}

.learning-list--navy li::before {
	background: #1E2B69;
}

/* ============================================
   SUBJECT BOXES
   ============================================ */

.subject-boxes {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 25px;
}

.subject-box {
	box-sizing: border-box;
	padding: 15px 25px;
	background: #FFFFFF;
	border-radius: 25px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
	color: #000000;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60px;
}

.subject-box--teal {
	border: 3px solid #37A7A7;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

footer {
	background: #1E2B69;
	padding: 40px 0;
}

.footer__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 30px;
}

.footer__column {
	display: flex;
	flex-direction: column;
}

.footer__column .logo {
	height: 50px;
	width: auto;
}

.footer__list {
	list-style: none;
}

.footer__item {
	margin-bottom: 10px;
}

.footer__link {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #FFFFFF;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.footer__link:hover {
	opacity: 0.8;
}

.contacts-shedule {
	display: flex;
	flex-direction: column;
	color: #FFFFFF;
}

.contacts-shedule__title {
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 5px;
}

.contacts-shedule__days,
.contacts-shedule__time {
	font-size: 14px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
	.learning-page__title {
		font-size: 32px;
		line-height: 40px;
	}

	.learning-page__intro,
	.learning-section__text,
	.learning-list li {
		font-size: 18px;
		line-height: 24px;
	}

	.learning-section__title {
		font-size: 26px;
		line-height: 32px;
	}

	.subject-box {
		font-size: 16px;
	}

	.learning-card {
		padding: 20px 25px 20px 50px;
	}
}

@media (max-width: 800px) {
	/* Header Mobile */
	.header__menu {
		display: none;
	}

	.country-dropdown {
		display: none;
	}

	.header__contacts_mobile {
		display: block;
	}

	.header__contacts_mobile img {
		width: 24px;
		height: 24px;
	}

	.header__wrapper {
		justify-content: space-between;
	}

	/* Learning Page Mobile */
	.learning-page {
		padding: 30px 0 60px;
	}

	.learning-page__container {
		padding: 0 20px;
	}

	.learning-page__title {
		font-size: 26px;
		line-height: 32px;
		margin-bottom: 30px;
	}

	.learning-page__intro {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 40px;
	}

	.learning-section {
		margin-bottom: 40px;
	}

	.learning-section__title {
		font-size: 22px;
		line-height: 28px;
	}

	.learning-section__text {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 20px;
	}

	.learning-card {
		padding: 20px 20px 20px 40px;
		border-radius: 20px;
	}

	.learning-list li {
		font-size: 16px;
		line-height: 22px;
		padding-left: 30px;
		margin-bottom: 10px;
	}

	.learning-list li::before {
		width: 12px;
		height: 12px;
		top: 5px;
	}

	/* Subject boxes mobile */
	.subject-boxes {
		flex-direction: column;
		gap: 15px;
	}

	.subject-box {
		width: 100%;
		font-size: 16px;
		padding: 15px 20px;
		min-height: 50px;
	}

	/* Footer Mobile */
	.footer__wrapper {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 25px;
	}

	.footer__column {
		align-items: center;
	}

	.footer-shedule_mobile {
		order: -1;
	}
}

@media (max-width: 480px) {
	.learning-page__title {
		font-size: 22px;
		line-height: 28px;
	}

	.learning-section__title {
		font-size: 18px;
		line-height: 24px;
	}

	.learning-page__intro,
	.learning-section__text,
	.learning-list li {
		font-size: 14px;
		line-height: 20px;
	}

	.learning-card {
		padding: 15px 15px 15px 35px;
		border-radius: 15px;
	}

	.learning-list li {
		padding-left: 25px;
	}

	.learning-list li::before {
		width: 10px;
		height: 10px;
		top: 5px;
	}

	.subject-box {
		font-size: 14px;
		padding: 12px 15px;
	}
}
