html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a:hover {
	border: 0;
}

body,
input,
button,
textarea {
	font-family: 'Montserrat', sans-serif;

}

input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

body {}

body a {
	text-decoration: none;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}
.glassmorphism {
	background: rgba(20, 20, 20, 0.9);
	backdrop-filter: blur(12px);
	padding: 15px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	position: relative;
	z-index: 10;
}
.header-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}
.site-logo {
	font-size: 26px;
	font-weight: bold;
	color: #f8b400;
	text-shadow: 0 0 8px #f8b400;
}
.nav-menu {
	display: flex;
	list-style: none;
	gap: 20px;
}
.menu-link {
	text-decoration: none;
	color: #f1f1f1;
	font-weight: 600;
	transition: color 0.3s ease;
}
.menu-link:hover {
	color: #f8b400;
}
.locale-btn {
	background: #e67e22;
	border: none;
	padding: 10px 15px;
	color: #fff;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.3s ease;
}
.locale-btn:hover {
	background: #d35400;
}
/* main */
.futuristic-design {
	background: radial-gradient(circle at center, #0f172a, #1e293b);
	color: #ffffff;
	padding: 80px 30px;
	border-radius: 25px;
	text-align: center;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
	position: relative;
	overflow: hidden;
}
.futuristic-design::before {
	content: "";
	position: absolute;
	top: -50px;
	left: -50px;
	width: 150px;
	height: 150px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	filter: blur(50px);
}
.hero-content-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	gap: 40px;
}
.hero-intro {
	text-align: left;
	width: 50%;
}
.hero-title {
	font-size: 48px;
	font-weight: 900;
	line-height: 1.4;
	color: #ff9800;
	text-shadow: 0 0 15px rgba(255, 152, 0, 0.6);
}
.hero-description {
	font-size: 22px;
	line-height: 1.8;
	color: #cfd8dc;
	margin: 20px 0;
}
.cta-button {
	background-color: #e67e22;
	padding: 16px 32px;
	font-size: 22px;
	font-weight: bold;
	color: #fff;
	border-radius: 12px;
	outline: none;
	border: 0;
	cursor: pointer;
	transition: background 0.4s ease, transform 0.2s ease;
}
.cta-button:hover {
	background: #d35400;
}
.hero-visual img {
	max-width: 520px;
	border-radius: 15px;
	transition: transform 0.3s ease;
}
.hero-visual img:hover {
	transform: scale(1.05);
}
.hero-content-wrapper-content-bg{
	padding: 70px 0;
	position: relative;
	width: 100%;
	background: url(img/main-bg-img.webp) no-repeat center center / cover;
	display: flex;
	flex-flow: column;
	z-index: 0;
	text-align: center;
}
/* mainEnd */
/* fur */
.furniture-mastery {
	padding: 60px 0;
	background-color: #f9f9f9;
}

.mastery-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.mastery-grid {
	display: flex;
	align-items: end;
	gap: 40px;
}

.mastery-visual {
	flex: 1;
}

.mastery-image {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mastery-content {
	flex: 1;
}

.mastery-headline {
	font-size: 2.5rem;
	color: #333;
	margin-bottom: 30px;
	font-weight: 700;
}

.mastery-skills {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.skill-card {
	display: flex;
	align-items: center;
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.skill-icon img {
	width: 40px;
	height: 40px;
	margin-right: 15px;
}

.skill-details h3 {
	font-size: 1.25rem;
	color: #222;
	margin-bottom: 10px;
	font-weight: 600;
}

.skill-details p {
	font-size: 0.9rem;
	color: #555;
	line-height: 1.5;
}

/* furEnd */
/* expert */
.furniture-experts {
	padding: 80px 0;
	background-color: #f5f5f5;
}

.expert-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.expert-intro {
	text-align: center;
	margin-bottom: 50px;
}

.expert-headline {
	font-size: 2.75rem;
	color: #333;
	font-weight: 700;
	margin-bottom: 30px;
	line-height: 1.4;
	text-align: center;
}

.expert-headline span {
	color: #e67e22;
}

.expert-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.expert-card {
	background-color: #fff;
	padding: 30px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.expert-icon {
	width: 100%;
	margin-bottom: 20px;
	max-height: 300px;
}

.expert-name {
	font-size: 1.5rem;
	color: #222;
	margin-bottom: 10px;
	font-weight: 600;
}

.expert-role {
	font-size: 1rem;
	color: #e67e22;
	margin-bottom: 15px;
	font-weight: 500;
}

.expert-bio {
	font-size: 0.95rem;
	color: #555;
	line-height: 1.6;
}
/* expertEnd */
/* furnew-block */
.furniture-about {
	padding: 100px 0;
	background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
}

.furniture-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.furniture-text {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.furniture-title {
	font-size: 3rem;
	color: #333;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
	display: inline-block;
}

.furniture-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background-color: #e67e22;
}

.furniture-content {
	text-align: left;
}

.furniture-description {
	font-size: 1.1rem;
	color: #555;
	line-height: 1.8;
	margin-bottom: 20px;
}

.furniture-description:last-child {
	margin-bottom: 0;
}

.neon-accent {
	color: #333;
	text-shadow: 0 0 5px rgba(230, 126, 34, 0.7), 0 0 10px rgba(230, 126, 34, 0.5);
}

.muted-tone {
	color: #555;
}

/* Gradient Background */
.gradient-background {
	background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
}

/* furnew-blockEnd */
/* blog */
.furniture-blog {
	padding: 100px 0;
	background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
}

.blog-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.blog-title {
	font-size: 3rem;
	color: #333;
	font-weight: 700;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
	display: inline-block;
}

.blog-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background-color: #e67e22;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.blog-card {
	background-color: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3sease, box-shadow 0.3sease;
	height: 100%;
	display: flex;
	flex-flow: column;
}

.blog-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.blog-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.blog-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-card:hover .blog-img {
	transform: scale(1.1);
}

.blog-heading {
	font-size: 1.5rem;
	color: #222;
	margin: 20px 20px 10px;
	font-weight: 600;
	min-height:75px;
	line-height: 1.4;
}

.blog-description {
	font-size: 1rem;
	color: #555;
	line-height: 1.6;
	margin: 0 20px 20px;
}

.blog-button {
	display: block;
	width: calc(100% - 40px);
	margin: 0 20px 20px;
	padding: 12px 0;
	background-color: #e67e22;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s ease;
	margin-top: auto;
}

.blog-button:hover {
	background-color: #d35400;
}

/* Gradient Background */
.gradient-background {
	background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
}

/* blogEnd */
/* benf */
.furniture-benefits {
	padding: 100px 0;
	background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
}

.benefits-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.benefits-title {
	font-size: 3rem;
	color: #333;
	font-weight: 700;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
	display: inline-block;
}

.benefits-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background-color: #e67e22;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.benefit-card {
	background-color: #fff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.benefit-heading {
	font-size: 1.5rem;
	color: #222;
	margin-bottom: 20px;
	font-weight: 600;
	line-height: 1.4;
}

.benefit-description {
	font-size: 1rem;
	color: #555;
	line-height: 1.6;
	margin-bottom: 20px;
}

.benefit-description:last-child {
	margin-bottom: 0;
}

/* Gradient Background */
.gradient-background {
	background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
}

/* benfEnd */
/* faq */
/* Styles for the Furniture Masterpiece Section */
.furniture-masterpiece {
	padding: 120px 0;
	background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
}

.masterpiece-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.masterpiece-title {
	font-size: 3.5rem;
	color: #333;
	font-weight: 700;
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	display: inline-block;
}

.masterpiece-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background-color: #e67e22;
}

.masterpiece-content {
	display: flex;
	gap: 50px;
	align-items: flex-start;
}

.masterpiece-text {
	flex: 2;
}

.masterpiece-description {
	font-size: 1.1rem;
	color: #555;
	line-height: 1.8;
	margin-bottom: 30px;
}

.masterpiece-description:last-child {
	margin-bottom: 0;
}

.masterpiece-highlights {
	flex: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

.highlight-item {
	background-color: #fff;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.highlight-title {
	font-size: 1.5rem;
	color: #222;
	margin-bottom: 15px;
	font-weight: 600;
	line-height: 1.4;
}

.highlight-description {
	font-size: 1rem;
	color: #555;
	line-height: 1.6;
}

/* Gradient Background */
.gradient-background {
	background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
}
/* faqEnd */
/* contact */
/* Styles for the Furniture Contact Section */
.furniture-contact {
	padding: 120px 0;
	background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
}

.contact-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.contact-headline {
	font-size: 3.5rem;
	color: #333;
	font-weight: 700;
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	display: inline-block;
}

.contact-headline::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background-color: #e67e22;
}

.contact-layout {
	display: flex;
	gap: 50px;
	align-items: flex-start;
}

.contact-form {
	flex: 1;
	background-color: #fff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.input-group {
	margin-bottom: 25px;
}

.input-label {
	display: block;
	font-size: 1rem;
	color: #555;
	margin-bottom: 10px;
	font-weight: 500;
}

.input-field, .input-textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
	color: #333;
	transition: border-color 0.3s ease;
}

.input-field:focus, .input-textarea:focus {
	border-color: #e67e22;
	outline: none;
}

.input-textarea {
	resize: vertical;
	min-height: 150px;
}

.submit-button {
	width: 100%;
	padding: 15px;
	background-color: #e67e22;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.submit-button:hover {
	background-color: #d35400;
}

.contact-details {
	flex: 1;
	background-color: #fff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	min-height: 525px;
}

.details-title {
	font-size: 2rem;
	color: #333;
	margin-bottom: 20px;
	font-weight: 600;
}

.details-description {
	font-size: 1rem;
	color: #555;
	line-height: 1.6;
	margin-bottom: 30px;
}

.details-list {
	list-style: none;
	padding: 0;
	margin-bottom: 30px;
}

.details-item {
	font-size: 1rem;
	color: #555;
	margin-bottom: 15px;
	line-height: 1.6;
}

.details-item strong {
	color: #333;
	font-weight: 600;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-link {
	font-size: 1rem;
	color: #e67e22;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.social-link:hover {
	color: #d35400;
}

/* Gradient Background */
.gradient-background {
	background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
}
/* contactEnd */
/* footer */
.privacy-popup {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	padding: 25px;
	max-width: 350px;
	transform: translateY(100%);
	opacity: 0;
	transition: transform 0.5s ease, opacity 0.5s ease;
	z-index: 1000;
}

.privacy-popup.popup-visible {
	transform: translateY(0);
	opacity: 1;
}

.popup-content {
	text-align: center;
}

.popup-title {
	font-size: 1.5rem;
	color: #333;
	margin-bottom: 15px;
	font-weight: 600;
}

.popup-description {
	font-size: 0.9rem;
	color: #555;
	line-height: 1.6;
	margin-bottom: 20px;
}

.popup-link {
	color: #e67e22;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.popup-link:hover {
	color: #d35400;
}

.popup-actions {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.popup-button {
	padding: 10px 20px;
	border: none;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.popup-button--agree {
	background-color: #e67e22;
	color: #fff;
}

.popup-button--agree:hover {
	background-color: #d35400;
	transform: translateY(-2px);
}

.popup-button--disagree {
	background-color: #f1f1f1;
	color: #333;
}

.popup-button--disagree:hover {
	background-color: #ddd;
	transform: translateY(-2px);
}

/* Footer Styles */
.footer-main {
	background-color: #333;
	padding: 40px 0;
	color: #fff;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}

.footer-nav {
	margin-bottom: 20px;
}

.footer-list {
	list-style: none;
	padding: 0;
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-list-item {
	margin: 5px 0;
}

.footer-link {
	color: #fff;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.footer-link--hover:hover {
	color: #e67e22;
}

.footer-legal {
	margin-top: 20px;
}

.footer-copyright {
	font-size: 0.9rem;
	color: #ccc;
	margin: 0;
}

/* footerEnd */
/* first-page */
.furniture-trends {
	padding: 80px 0;
	background-color: #f9f9f9;
}

.trends-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	gap: 40px;
	align-items: center;
	flex-flow: column;
}

.trends-image {
	flex: 1;
}

.trends-img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.trends-content {
	flex: 1;
}

.trends-title {
	font-size: 2.5rem;
	color: #333;
	margin-bottom: 20px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.trends-description {
	font-size: 1rem;
	color: #555;
	line-height: 1.8;
}

.trends-description p {
	margin-bottom: 20px;
}

.trends-description strong {
	color: #e67e22;
	font-weight: 600;
}
/* first-pageEnd */
/*privacy */
.privacy-policy-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #f5f7fa, #e6e9ef);
}

.privacy-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.privacy-wrapper {
	background-color: #fff;
	padding: 50px;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.privacy-main-title {
	font-size: 2.75rem;
	color: #2c3e50;
	margin-bottom: 30px;
	font-weight: 700;
	text-align: center;
	position: relative;
}

.privacy-main-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background-color: #e67e22;
}

.privacy-intro {
	font-size: 1.1rem;
	color: #555;
	line-height: 1.8;
	margin-bottom: 40px;
	text-align: center;
}

.privacy-section {
	margin-bottom: 40px;
	padding: 20px;
	background-color: #f9f9f9;
	border-radius: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-section:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.privacy-section-title {
	font-size: 1.5rem;
	color: #2c3e50;
	margin-bottom: 15px;
	font-weight: 600;
	display: flex;
	align-items: center;
}

.privacy-section-title::before {
	content: '•';
	color: #e67e22;
	font-size: 2rem;
	margin-right: 10px;
}

.privacy-section-text {
	font-size: 1rem;
	color: #555;
	line-height: 1.8;
	margin-bottom: 0;
}

.privacy-link {
	color: #e67e22;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.privacy-link:hover {
	color: #d35400;
}

/* Responsive Design */
/*privacyEnd */
@media (max-width: 1200px) {
	.header-wrapper,
	.hero-content-wrapper,
	.mastery-container,
	.expert-container,
	.furniture-container,
	.blog-container,
	.benefits-container,
	.masterpiece-container,
	.contact-wrapper,
	.trends-wrapper,
	.privacy-container {
			padding: 0 15px;
	}
}

/* Для экранов меньше 1024px */
@media (max-width: 1024px) {
	.privacy-main-title {
		font-size: 2.5rem;
}

.privacy-intro {
		font-size: 1rem;
}

.privacy-section-title {
		font-size: 1.25rem;
}

.privacy-section-text {
		font-size: 0.9rem;
}
	.header-wrapper {
			flex-direction: column;
			gap: 20px;
	}

	.hero-content-wrapper {
			flex-direction: column;
			text-align: center;
	}

	.hero-intro {
			width: 100%;
	}

	.hero-visual img {
			max-width: 100%;
	}

	.mastery-grid {
			flex-direction: column;
			align-items: center;
	}

	.expert-grid,
	.blog-grid,
	.benefits-grid {
			grid-template-columns: repeat(2, 1fr);
	}

	.masterpiece-content {
			flex-direction: column;
	}
	.contact-form{
		width: 100%;
	}
	.contact-layout {
			flex-direction: column;
	}

	.trends-wrapper {
			flex-direction: column;
	}

	.privacy-wrapper {
			padding: 30px;
	}
	.contact-form,
	.contact-details {
			width: 100%;
	}
}

/* Для экранов меньше 768px */
@media (max-width: 768px) {
	.blog-heading{
		font-size: 1.5rem;
	}
	.hero-title {
			font-size: 36px;
	}

	.hero-description {
			font-size: 18px;
	}

	.cta-button {
			font-size: 18px;
			padding: 12px 24px;
	}

	.mastery-headline,
	.expert-headline,
	.furniture-title,
	.blog-title,
	.benefits-title,
	.masterpiece-title,
	.contact-headline,
	.trends-title,
	.privacy-main-title {
			font-size: 2rem;
	}

	.expert-grid,
	.blog-grid,
	.benefits-grid {
			grid-template-columns: 1fr;
	}

	.skill-card,
	.expert-card,
	.blog-card,
	.benefit-card,
	.highlight-item {
			padding: 20px;
	}

	.contact-form,
	.contact-details {
			padding: 20px;
	}

	.trends-description {
			font-size: 0.9rem;
	}

	.privacy-section-title {
			font-size: 1.25rem;
	}

	.privacy-section-text {
			font-size: 0.9rem;
	}
}

/* Для экранов меньше 480px */
@media (max-width: 480px) {
	.mastery-skills {
    grid-template-columns: repeat(1, 1fr);
}
	.nav-menu{
		flex-flow: column;
		align-items: center;
	}
	.hero-title {
			font-size: 28px;
	}

	.hero-description {
			font-size: 16px;
	}

	.cta-button {
			font-size: 16px;
			padding: 10px 20px;
	}

	.mastery-headline,
	.expert-headline,
	.furniture-title,
	.blog-title,
	.benefits-title,
	.masterpiece-title,
	.contact-headline,
	.trends-title,
	.privacy-main-title {
			font-size: 1.75rem;
	}

	.skill-card,
	.expert-card,
	.blog-card,
	.benefit-card,
	.highlight-item {
			padding: 15px;
	}

	.contact-form,
	.contact-details {
			padding: 15px;
	}

	.trends-description {
			font-size: 0.8rem;
	}

	.privacy-section-title {
			font-size: 1rem;
	}

	.privacy-section-text {
			font-size: 0.8rem;
	}

	.footer-list {
			flex-direction: column;
			gap: 10px;
	}

	.footer-link {
			font-size: 0.8rem;
	}

	.footer-copyright {
			font-size: 0.8rem;
	}
}

.language-section {
    position: relative;
    display: inline-block;
}

/* Кнопка выбора языка */
.locale-btn {
    background-color: rgba(255, 165, 0, 0.9); /* Цвет кнопки */
    border: none;
    color: white;
    padding: 8px 12px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.locale-btn:hover {
    background-color: rgba(255, 140, 0, 1);
}

/* Выпадающий список */
.language-dropdown {
    display: none; /* Меню скрыто по умолчанию */
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    list-style: none;
    padding: 0;
    margin-top: 5px;
    min-width: 120px;
    z-index: 10;
}

/* Элементы списка */
.language-dropdown li {
    padding: 10px;
    text-align: center;
}

.language-dropdown li a {
    text-decoration: none;
    color: black;
    display: block;
    font-weight: 500;
}

.language-dropdown li:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Показываем меню при фокусе внутри блока */
.language-section:focus-within .language-dropdown {
    display: block;
}
