:root {
	--primary-color: #1a2b5f;
	--secondary-color: #d4af37;
	--accent-color: #8b4513;
	--text-dark: #2c3e50;
	--text-light: #7f8c8d;
	--background-light: #f8f9fa;
	--white: #ffffff;
	--gradient: linear-gradient(135deg, #1a2b5f 0%, #2c4a8c 100%);
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	--shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

body {
	font-family: 'Montserrat', sans-serif;
	color: var(--text-dark);
	line-height: 1.6;
	overflow-x: hidden;
	background: var(--white);
}

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

/* Header */
.header {
	background: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 2px solid var(--secondary-color);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	gap: 40px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

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

.logo-text {
	display: flex;
	flex-direction: column;
}

.logo-main {
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	letter-spacing: 1px;
}

.logo-sub {
	font-size: 11px;
	color: var(--text-light);
	letter-spacing: 0.5px;
}

.nav {
	display: flex;
	gap: 35px;
	align-items: center;
}

.nav-dropdown {
	position: relative;
}

.dropdown-arrow {
	font-size: 10px;
	margin-left: 5px;
	transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
	transform: rotate(180deg);
}

.dropdown-content {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: var(--white);
	min-width: 720px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	border-radius: 12px;
	padding: 30px;
	z-index: 1000;
	margin-top: 0;
}

.nav-dropdown:hover .dropdown-content {
	display: flex;
	animation: fadeInDown 0.3s ease;
}
.dropdown-column {
	margin: 5px;
}


@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}

.dropdown-column h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--secondary-color);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.dropdown-column a {
	display: block;
	padding: 10px 12px;
	color: var(--text-dark);
	text-decoration: none;
	font-size: 14px;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.dropdown-column a:hover {
	background: rgba(212, 175, 55, 0.1);
	color: var(--primary-color);
	padding-left: 16px;
}

.nav-link {
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	transition: all 0.3s ease;
	position: relative;
	padding: 5px 0;
	cursor: pointer;
}

span.nav-link {
	display: inline-block;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--secondary-color);
	transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary-color);
}

.contacts-header {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
}

.phone {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.phone:hover {
	color: var(--secondary-color);
}

.social-icons {
	display: flex;
	gap: 10px;
}

.social-icon {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	transition: all 0.3s ease;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.1);
}

.social-icon svg {
	width: 16px;
	height: 16px;
}

.social-icon:hover {
	background: var(--secondary-color);
	color: var(--white);
	transform: translateY(-2px);
}

.header .btn-header {
	padding: 5px 15px;
}

/* Hero Section */
.hero {
	position: relative;
	min-height: 600px;
	display: flex;
	align-items: center;
	background: var(--gradient);
	overflow: hidden;
}
.hero .container {
	display: flex;
	align-items: center;
}
.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}

.hero-content {
	position: relative;
	z-index: 1;
	color: var(--white);
	padding: 80px 0;
	animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-title {
	font-family: 'Playfair Display', serif;
	font-size: 52px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
	font-size: 20px;
	margin-bottom: 35px;
	opacity: 0.95;
	max-width: 600px;
}

.hero-features {
	display: flex;
	gap: 30px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.hero-feature {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
}

.feature-icon {
	color: var(--secondary-color);
	font-size: 20px;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-family: 'Montserrat', sans-serif;
}

.btn-primary {
	background: var(--secondary-color);
	color: var(--white);
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
	background: #c49d2f;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
	background: var(--white);
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
	background: var(--primary-color);
	color: var(--white);
	transform: translateY(-2px);
}

.btn-large {
	padding: 18px 40px;
	font-size: 18px;
}

.btn-full {
	width: 100%;
}

/* Section Styles */
section {
	padding: 80px 0;
}

.section-title {
	font-family: 'Playfair Display', serif;
	font-size: 42px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 15px;
	color: var(--primary-color);
	position: relative;
}

.section-title::after {
	content: '';
	display: block;
	width: 80px;
	height: 3px;
	background: var(--secondary-color);
	margin: 20px auto 0;
}

.section-subtitle {
	text-align: center;
	font-size: 18px;
	color: var(--text-light);
	margin-bottom: 50px;
}

/* Products Grid */
.products {
	background: var(--background-light);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.product-card {
	background: var(--white);
	padding: 35px;
	border-radius: 15px;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	border-top: 3px solid var(--secondary-color);
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
}

.product-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.product-title {
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.product-features {
	list-style: none;
	margin-bottom: 25px;
}

.product-features li {
	padding: 8px 0;
	font-size: 15px;
	color: var(--text-dark);
	border-bottom: 1px solid #eee;
}

.product-features li:last-child {
	border-bottom: none;
}

.product-price {
	font-size: 28px;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 20px;
}
.product-image {
	max-width: 100%;
}

/* Universities Table */
.universities {
	background: var(--white);
}

.university-search-wrapper {
	margin: 40px auto 30px;
	max-width: 600px;
}

.university-search {
	width: 100%;
	padding: 16px 24px;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	transition: all 0.3s ease;
	background: var(--background-light);
}

.university-search:focus {
	outline: none;
	border-color: var(--secondary-color);
	box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
	background: var(--white);
}

.table-wrapper {
	overflow-x: auto;
	margin-top: 40px;
	border-radius: 10px;
	box-shadow: var(--shadow);
}

.universities-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--white);
}

.universities-table thead {
	background: var(--gradient);
	color: var(--white);
}

.universities-table th {
	padding: 18px;
	text-align: left;
	font-weight: 600;
	font-size: 16px;
}

.universities-table td {
	padding: 16px 18px;
	border-bottom: 1px solid #eee;
}

.universities-table tbody tr:hover {
	background: rgba(212, 175, 55, 0.05);
}

.universities-table tbody tr:last-child td {
	border-bottom: none;
}

.universities-table tbody tr.hidden-row {
	display: none;
}

.universities-table tbody tr.hidden-row.show {
	display: table-row;
}

.table-toggle-wrapper {
	text-align: center;
	margin-top: 30px;
}

.university-not-found {
	background: var(--gradient);
	color: var(--white);
	padding: 60px 40px;
	border-radius: 20px;
	text-align: center;
	margin-top: 60px;
	box-shadow: var(--shadow);
}

.not-found-icon {
	font-size: 64px;
	margin-bottom: 20px;
}

.not-found-title {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
}

.not-found-text {
	font-size: 18px;
	margin-bottom: 30px;
	opacity: 0.95;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* Pricing Section */
.pricing {
	background: var(--background-light);
}

.pricing-grid {
	display: grid;
	gap: 40px;
	margin-top: 50px;
}

.pricing-category {
	background: var(--white);
	padding: 35px;
	border-radius: 15px;
	box-shadow: var(--shadow);
}

.category-title {
	font-family: 'Playfair Display', serif;
	font-size: 26px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--secondary-color);
}

.pricing-items {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pricing-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background: var(--background-light);
	border-radius: 8px;
	transition: all 0.3s ease;
}

.pricing-item:hover {
	background: rgba(212, 175, 55, 0.1);
	transform: translateX(5px);
}

.pricing-item.highlight {
	background: rgba(212, 175, 55, 0.15);
	border-left: 3px solid var(--secondary-color);
}

.item-name {
	font-size: 15px;
	color: var(--text-dark);
	flex: 1;
}

.item-price {
	font-size: 18px;
	font-weight: 600;
	color: var(--secondary-color);
	white-space: nowrap;
	margin-left: 20px;
}

/* Benefits Section */
.benefits {
	background: var(--white);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.benefit-card {
	text-align: center;
	padding: 40px 30px;
	background: var(--background-light);
	border-radius: 15px;
	transition: all 0.3s ease;
}

.benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
	background: var(--white);
}

.benefit-icon {
	font-size: 52px;
	margin-bottom: 20px;
}

.benefit-title {
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.benefit-text {
	font-size: 15px;
	color: var(--text-light);
	line-height: 1.7;
}

/* Process Section */
.process {
	background: var(--background-light);
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.process-step {
	background: var(--white);
	padding: 35px 30px;
	border-radius: 15px;
	box-shadow: var(--shadow);
	position: relative;
	transition: all 0.3s ease;
}

.process-step:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
}

.step-number {
	position: absolute;
	top: -15px;
	left: 30px;
	background: var(--secondary-color);
	color: var(--white);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.step-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin: 25px 0 15px;
}

.step-text {
	font-size: 15px;
	color: var(--text-light);
	line-height: 1.7;
}

/* Guarantees Section */
.guarantees {
	background: var(--white);
}

.guarantees-content {
	max-width: 900px;
	margin: 50px auto 0;
}

.guarantee-item {
	display: flex;
	gap: 25px;
	padding: 30px;
	background: var(--background-light);
	border-radius: 15px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.guarantee-item:hover {
	transform: translateX(10px);
	box-shadow: var(--shadow);
	background: var(--white);
}

.guarantee-icon {
	font-size: 36px;
	color: var(--secondary-color);
	flex-shrink: 0;
}

.guarantee-text h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.guarantee-text p {
	font-size: 15px;
	color: var(--text-light);
	line-height: 1.7;
}

/* CTA Section */
.cta {
	background: var(--gradient);
	color: var(--white);
	text-align: center;
}

.cta-content {
	max-width: 700px;
	margin: 0 auto;
}

.cta-title {
	font-family: 'Playfair Display', serif;
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 20px;
}

.cta-text {
	font-size: 18px;
	margin-bottom: 35px;
	opacity: 0.95;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Footer */
.footer {
	background: var(--primary-color);
	color: var(--white);
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column h4 {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
}

.footer-title {
	color: var(--secondary-color);
}

.footer-description {
	font-size: 14px;
	line-height: 1.7;
	opacity: 0.9;
}

.footer-links,
.footer-contacts {
	list-style: none;
}

.footer-links li,
.footer-contacts li {
	margin-bottom: 12px;
}

.footer-links a,
.footer-contacts a {
	color: var(--white);
	text-decoration: none;
	opacity: 0.9;
	transition: all 0.3s ease;
	font-size: 14px;
}

.footer-links a:hover,
.footer-contacts a:hover {
	opacity: 1;
	color: var(--secondary-color);
	padding-left: 5px;
}

.footer-social {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-social-link {
	color: var(--white);
	text-decoration: none;
	opacity: 0.9;
	transition: all 0.3s ease;
	font-size: 14px;
}

.footer-social-link:hover {
	opacity: 1;
	color: var(--secondary-color);
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 14px;
	opacity: 0.8;
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.modal.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-content {
	background: var(--white);
	padding: 40px;
	border-radius: 20px;
	max-width: 600px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	animation: slideUp 0.3s ease;
}

@keyframes slideUp {
	from {
		transform: translateY(50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.modal-close {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 32px;
	color: var(--text-light);
	cursor: pointer;
	transition: color 0.3s ease;
}

.modal-close:hover {
	color: var(--primary-color);
}

.modal-title {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	color: var(--primary-color);
	margin-bottom: 30px;
}

/* Forms */
.order-form,
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-group label {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 12px 16px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 15px;
	font-family: 'Montserrat', sans-serif;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--secondary-color);
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Page Header */
.page-header {
	background: var(--gradient);
	color: var(--white);
	padding: 80px 0;
	text-align: center;
}

.page-title {
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 15px;
}

.page-subtitle {
	font-size: 20px;
	opacity: 0.95;
}

/* Payment Page */
.payment-section,
.delivery-section {
	background: var(--background-light);
}

.payment-methods {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.payment-card {
	background: var(--white);
	padding: 35px;
	border-radius: 15px;
	box-shadow: var(--shadow);
	text-align: center;
	transition: all 0.3s ease;
}

.payment-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
}

.payment-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.payment-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.payment-text {
	font-size: 15px;
	color: var(--text-light);
	line-height: 1.7;
}

.payment-info {
	margin-top: 60px;
}

.info-block {
	background: var(--white);
	padding: 40px;
	border-radius: 15px;
	box-shadow: var(--shadow);
}

.info-block h3 {
	font-size: 24px;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.info-block ul {
	list-style: none;
}

.info-block li {
	padding: 12px 0;
	font-size: 15px;
	color: var(--text-dark);
	border-bottom: 1px solid #eee;
}

.info-block li:last-child {
	border-bottom: none;
}

/* Delivery Page */
.delivery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.delivery-card {
	background: var(--white);
	background: var(--background-light);
	border-radius: 15px;
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: all 0.3s ease;
}

.delivery-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
}

.delivery-header {
	background: var(--gradient);
	color: var(--white);
	padding: 25px;
	text-align: center;
}

.delivery-icon {
	font-size: 42px;
	margin-bottom: 15px;
}

.delivery-title {
	font-size: 22px;
	font-weight: 600;
}

.delivery-body {
	padding: 30px;
	background: var(--white);
}

.delivery-description {
	font-size: 15px;
	color: var(--text-light);
	margin-bottom: 20px;
}

.delivery-features {
	list-style: none;
}

.delivery-features li {
	padding: 10px 0;
	font-size: 14px;
	color: var(--text-dark);
	border-bottom: 1px solid #eee;
}

.delivery-features li:last-child {
	border-bottom: none;
}

.delivery-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 30px;
	background: var(--background-light);
	border-top: 2px solid #eee;
}

.delivery-time {
	font-size: 15px;
	font-weight: 600;
	color: var(--primary-color);
}

.delivery-price {
	font-size: 20px;
	font-weight: 700;
	color: var(--secondary-color);
}

.delivery-info-section {
	background: var(--white);
}

.info-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.info-card {
	background: var(--background-light);
	padding: 30px;
	border-radius: 15px;
	text-align: center;
}

.info-icon {
	font-size: 42px;
	margin-bottom: 20px;
}

.info-card h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.info-card p {
	font-size: 15px;
	color: var(--text-light);
	line-height: 1.7;
}

.additional-info {
	margin-top: 60px;
	background: var(--white);
	padding: 40px;
	border-radius: 15px;
	box-shadow: var(--shadow);
}

.additional-info h3 {
	font-size: 28px;
	color: var(--primary-color);
	margin-bottom: 30px;
}

.services-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.service-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background: var(--background-light);
	border-radius: 10px;
}

.service-name {
	font-size: 15px;
	color: var(--text-dark);
}

.service-price {
	font-size: 18px;
	font-weight: 600;
	color: var(--secondary-color);
}

/* FAQ Section */
.faq-section {
	background: var(--background-light);
}

.faq-list {
	max-width: 800px;
	margin: 50px auto 0;
}

.faq-item {
	background: var(--white);
	padding: 30px;
	border-radius: 15px;
	margin-bottom: 20px;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
}

.faq-item:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-hover);
}

.faq-question {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.faq-answer {
	font-size: 15px;
	color: var(--text-light);
	line-height: 1.7;
}

/* Contacts Page */
.contact-info-section {
	background: var(--background-light);
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.contact-card {
	background: var(--white);
	padding: 40px 30px;
	border-radius: 15px;
	box-shadow: var(--shadow);
	text-align: center;
	transition: all 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
}

.contact-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.contact-title {
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.contact-text {
	font-size: 15px;
	color: var(--text-light);
	margin-bottom: 15px;
}

.contact-link {
	font-size: 18px;
	font-weight: 600;
	color: var(--secondary-color);
	text-decoration: none;
	display: block;
	margin-bottom: 10px;
}

.contact-note {
	font-size: 13px;
	color: var(--text-light);
	font-style: italic;
}

.messenger-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.messenger-link {
	color: var(--secondary-color);
	text-decoration: none;
	font-weight: 600;
}

.contact-form-section {
	background: var(--white);
}

.form-wrapper {
	max-width: 800px;
	margin: 0 auto;
}

.form-header {
	text-align: center;
	margin-bottom: 40px;
}

.map-section {
	background: var(--background-light);
}

.map-container {
	margin-top: 40px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.map-placeholder {
	background: var(--gradient);
	color: var(--white);
	padding: 100px 40px;
	text-align: center;
}

.map-icon {
	font-size: 64px;
	margin-bottom: 20px;
}

.map-placeholder p {
	font-size: 18px;
	margin-bottom: 10px;
}

.location-details {
	background: var(--white);
	padding: 40px;
	border-radius: 15px;
	margin-top: 30px;
	box-shadow: var(--shadow);
}

.location-details h3 {
	font-size: 24px;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.location-details ul {
	list-style: none;
}

.location-details li {
	padding: 12px 0;
	font-size: 15px;
	color: var(--text-dark);
	line-height: 1.7;
	border-bottom: 1px solid #eee;
}

.location-details li:last-child {
	border-bottom: none;
}

.working-hours-section {
	background: var(--white);
}

.hours-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.hours-card {
	background: var(--background-light);
	padding: 40px;
	border-radius: 15px;
	box-shadow: var(--shadow);
}

.hours-card h3 {
	font-size: 24px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 25px;
}

.hours-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.hours-item {
	display: flex;
	justify-content: space-between;
	padding: 15px 20px;
	background: var(--white);
	border-radius: 10px;
}

.day {
	font-size: 15px;
	color: var(--text-dark);
}

.time {
	font-size: 15px;
	font-weight: 600;
	color: var(--secondary-color);
}

.social-proof-section {
	background: var(--gradient);
	color: var(--white);
}
.social-proof-section .section-title {
	color: #fff;
}

.social-proof-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.proof-card {
	text-align: center;
}

.proof-number {
	font-size: 52px;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 15px;
}

.proof-text {
	font-size: 18px;
	opacity: 0.95;
}

/* Category Pages */
.category-description {
	padding: 60px 0;
	background: var(--white);
}

.description-content {
	max-width: 900px;
	margin: 0 auto;
}

.description-content h2 {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	color: var(--primary-color);
	margin-bottom: 25px;
}

.description-content p {
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-dark);
	margin-bottom: 20px;
}

.features-section {
	padding: 80px 0;
	background: var(--background-light);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.feature-box {
	background: var(--white);
	padding: 35px 25px;
	border-radius: 15px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
}

.feature-box:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
}

.feature-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.feature-box h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 12px;
}

.feature-box p {
	font-size: 14px;
	color: var(--text-light);
	line-height: 1.6;
}

.pricing-table-section {
	padding: 80px 0;
	background: var(--white);
}

.pricing-table {
	max-width: 900px;
	margin: 50px auto 0;
	background: var(--white);
	border-radius: 15px;
	box-shadow: var(--shadow);
	overflow: hidden;
}

.pricing-row {
	display: grid;
	grid-template-columns: 1fr auto auto;
	align-items: center;
	gap: 20px;
	padding: 20px 30px;
	border-bottom: 1px solid #eee;
	transition: all 0.3s ease;
}

.pricing-row:last-child {
	border-bottom: none;
}

.pricing-row:hover {
	background: var(--background-light);
}

.pricing-row.highlight {
	background: rgba(212, 175, 55, 0.1);
	border-left: 4px solid var(--secondary-color);
}

.pricing-item-name {
	font-size: 15px;
	color: var(--text-dark);
}

.pricing-item-price {
	font-size: 20px;
	font-weight: 700;
	color: var(--secondary-color);
	white-space: nowrap;
}

.btn-sm {
	padding: 10px 24px;
	font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.header-content {
		flex-direction: column;
		gap: 0px;
	}

	.nav {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}

	.contacts-header {
		align-items: center;
	}

	.hero-title {
		font-size: 36px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.section-title {
		font-size: 32px;
	}

	.products-grid,
	.benefits-grid,
	.process-steps,
	.delivery-grid {
		grid-template-columns: 1fr;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.modal-content {
		padding: 30px 20px;
	}

	.cta-buttons {
		flex-direction: column;
	}

	.hours-grid {
		grid-template-columns: 1fr;
	}

	.hero-image img {
		width: 100%;
		max-width: 100%;
		min-width: 100px;
	}

	.nav-dropdown:hover .dropdown-content {
		display: block;
	}
}

/* Responsive Design */
@media (max-width: 400px) {
	.hero-image {
		display: none;
	}
}