body {
	font-family: "Inter", serif;
}

.border-bottom-black {
    width: 100%;
    height: 1px;
    padding: 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #000;
}

.black-layout {
    background: #000;
    width: 100%;
    height: auto;
}

/* Hero Section */
.hero {
	height: 775px;
	background-image: url('../img/bg-main-top.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 0 0 40px 40px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

/* Custom Navigation */
.custom-nav {
	position: relative;
	background: #F5F5F580;
	backdrop-filter: blur(8px);
	border-radius: 16px;
	margin: 55px 0 0 0;
	padding: 15px 30px;
	z-index: 2;
	width: 100%;
}

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


.brand-name {
	color: #000;
	font-weight: 900;
	font-size: 24px;

}

.nav-right {
	display: flex;
	gap: 30px;
}

.nav-link {
	color: white;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	transition: opacity 0.3s ease;
}

.nav-link:hover {
	opacity: 0.8;
	color: white;
}

/* Hero Content */
.hero-content {
	position: relative;
	padding: 80px 0;
	color: white;
	z-index: 2;
}

.hero-content h1 {
	font-size: 64px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 40px;
}

/* Learn More Button */
.learn-more {
	background-color: #F5BF4D;
	color: black;
	border: none;
	border-radius: 16px;
	padding: 12px 24px;
	font-weight: 900;
	font-size: 20px;
	text-transform: uppercase;
	transition: background-color 0.3s ease;
}

.learn-more:hover {
	background-color: #E9B549;
}

.learn-more:active {
	background-color: #DCAC45;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.custom-nav {
		margin: 0;
		margin-top: 20px;
	}

	.hero {
		height: 426px;
	}

	.hero-content {
		padding: 0;
		padding-top: 10px;
	}

	.hero-content h1 {
		font-size: 32px;
		font-weight: 800;
	}

	.nav-right {
		display: none;
	}

	.learn-more {
		display: none;
	}
}

.who-we-are {
	padding: 130px 0;
	background-color: #fff;
	border-radius: 0 0 40px 40px;
}

.who-we-are h2 {
	font-size: 52px;
	font-weight: 900;
	margin-bottom: 30px;
	color: #000;
}

.who-we-are .description p {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.6;
	color: #333;
	margin-bottom: 20px;
}

.who-we-are .description p:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.who-we-are {
		padding: 0;
		padding: 30px 0;
	}

	.who-we-are h2 {
		font-size: 36px;
		font-weight: 900;
		margin: 0;
	}

	.who-we-are .description p {
		margin: 0;
		margin-bottom: 10px;
		font-weight: 400;
		font-size: 24px;
	}
}

.what-we-do {
	position: relative;
	padding: 130px 0;
	background-color: #F5BF4D;
	border-radius: 0 0 40px 40px;
}

.white-border-radius {
	position: absolute;
	top: -1px;
	border-radius: 0 0 40px 40px;
	width: 100%;
	height: 41px;
	background: #fff;
}

.black-border-radius {
	position: absolute;
	top: -1px;
	border-radius: 0 0 40px 40px;
	width: 100%;
	height: 41px;
	background: #000;
}

.what-we-do h2 {
	font-size: 52px;
	font-weight: 900;
	margin-bottom: 40px;
	color: #000;
}

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

.service-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.service-item h3 {
	font-size: 16px;
	font-weight: bold;
	color: #000;
	margin: 0;
	display: inline;
}

.service-item p {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
	margin: 0;
}

@media (max-width: 768px) {
	.what-we-do {
		padding: 0;
		padding: 30px 0;
	}

	.what-we-do h2 {
		font-size: 36px;
		font-weight: 900;
		margin: 0;
	}

	.service-item h3 {
		font-size: 15px;
	}

	.service-item p {
		margin: 0;
		font-weight: 400;
		font-size: 24px;
	}

	.services {
		gap: 20px;
	}
}

.our-strengths {
	border-radius: 0 0 40px 40px;
	padding: 110px 0;
	background-color: #fff;
}

.our-strengths h2 {
	font-size: 52px;
	font-weight: 900;
	margin-bottom: 40px;
	color: #000;
}

.strength-card {
	background: #F5F5F580;
	border-radius: 40px;
	padding: 50px 30px 50px 30px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.strength-icon {
	margin-bottom: 20px;
}

.strength-icon svg {
	width: 100%;
	height: 100%;
}

.strength-card h3 {
	font-size: 36px;
	font-weight: 900;
	color: #000;
	margin-bottom: 10px;
}

.strength-card p {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
	margin: 0;
}

@media (max-width: 768px) {
	.our-strengths {
		padding: 50px 0;
	}

	.our-strengths h2 {
		font-size: 36px;
		font-weight: 900;
		margin-bottom: 30px;
	}

	.strength-card {
		padding: 20px;
	}

	.strength-card h3 {
		font-size: 24px;
		font-weight: 900;
	}

	.strength-card p {
		font-weight: 400;
		font-size: 24px;
	}
}

.key-markets {
	padding: 100px 0;
	background-color: #F5BF4D;
	border-radius: 0 0 40px 40px;
}

.key-markets h2 {
	font-size: 52px;
	font-weight: 900;
	color: #000;
	margin-bottom: 30px;
}

.markets-intro {
	margin-bottom: 40px;
}

.markets-intro p {
	font-weight: 400;
	font-size: 24px;
	line-height: 1.5;
	color: #000;
}

.market-card {
	background: #F5BF4D;
	border: 1px solid #000;
	border-radius: 40px;
	padding: 30px;
	height: 100%;
}

.market-card h3 {
	font-size: 36px;
	font-weight: 900;
	color: #000;
	margin-bottom: 15px;
}

.market-card p {
	font-weight: 400;
	font-size: 24px;
	line-height: 1.5;
	color: #000;
	margin: 0;
}

@media (max-width: 768px) {
	.key-markets {
		padding: 30px 0;
	}

	.key-markets h2 {
		font-size: 36px;
		font-weight: 900;
		margin-bottom: 0;
	}

	.markets-intro {
		margin-bottom: 30px;
	}

	.market-card {
		padding: 20px;
	}

	.market-card h3 {
		font-size: 24px;
		font-weight: 400;
		margin-bottom: 10px;
	}

	.market-card p {
		font-weight: 400;
		font-size: 24px;
	}
}

.contact-section {
	border-radius: 0 0 40px 40px;
	padding: 100px 0;
	background: #fff;
}

.contact-section h2 {
    color: #000;
	font-size: 52px;
	font-weight: 900;
	margin-bottom: 20px;
}

.contact-description {
    color: #000;
	margin-bottom: 40px;
	font-weight: 400;
	font-size: 24px;
	line-height: 1.5;
}

.contact-form {
	max-width: 100%;
}

.contact-form-group {
	margin-bottom: 20px;
}

.contact-form-group label {
    color: #000;
	display: block;
	margin-bottom: 8px;
	font-weight: 400;
	font-size: 24px;
}

.contact-form-group input {
	width: 100%;
	padding: 12px;
	border: 1px solid #000;
	border-radius: 16px;
	font-size: 24px;
}

.contact-info {
	padding-left: 180px;
	font-size: 24px;
	line-height: 1.6;
}

.contact-info a {
	color: #000;
	text-decoration: underline;
}

.contact-info p {
    color: #000;
	margin-bottom: 15px;
}

.contact-address {
	margin-top: 20px;
}

.send-button {
	background-color: #F5BF4D;
	border: none;
	padding: 12px 30px;
	border-radius: 16px;
	font-size: 20px;
	font-weight: 900;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.send-button:hover {
	background-color: #E9B549;
}

.send-button:active {
	background-color: #DCAC45;
}

@media (max-width: 768px) {
	.send-button {
		width: 100%;
		font-size: 20px;
	}

	.contact-section {
		padding: 30px 0;
	}

	.contact-section h2 {
		font-size: 36px;
		font-weight: 900;
	}

	.contact-info {
		font-size: 24px;
		font-weight: 400;
		margin-top: 40px;
		padding: 0;
	}

	.contact-description {
		font-size: 24px;
		font-weight: 400;
	}

	.contact-form-group label {
		font-weight: 400;
		font-size: 16px;
	}

	.contact-form-group input {
		padding: 10px;
	}
}

.footer {
	background-color: #000;
	padding: 80px 0;
	color: #fff;
}

.footer-top {
	margin-bottom: 30px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo-icon {
	width: 35px;
	height: 35px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-weight: bold;
}

.logo-text {
	font-size: 24px;
	font-weight: 900;
}

.footer-contact {
	margin-bottom: 30px;
}

.footer-contact p {
	margin-bottom: 15px;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5;
}

.footer-contact a {
	color: #fff;
	text-decoration: underline;
}

.address {
	max-width: 800px;
}

.footer-info {
	margin-bottom: 30px;
	font-weight: 400;
	font-size: 24px;
	line-height: 1.5;
}

.footer-links {
	display: flex;
	gap: 20px;
}

.footer-link {
	color: #fff;
	text-decoration: underline;
	font-weight: 400;
	font-size: 24px;
	transition: opacity 0.3s ease;
}

.footer-link:hover {
	opacity: 0.8;
}

.what-we-do,
.key-markets,
.footer {
	position: relative;
}

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

	.footer-contact p,
	.footer-info p,
	.footer-link {
		font-size: 24px;
		font-weight: 400;
	}

	.footer-links {
		flex-direction: column;
		gap: 15px;
	}
}

@media (max-width: 768px) {

	.what-we-do h2,
	.key-markets h2,
	.footer-top {
		margin-top: 40px;
	}
}

.privacy-notice {
	padding: 100px 0;
	background-color: #fff;
	border-radius: 0 0 40px 40px;
}

.privacy-notice h2 {
	font-size: 52px;
	font-weight: 900;
	margin-bottom: 40px;
	color: #000;
}

.privacy-notice h3 {
	font-size: 36px;
	font-weight: 900;
	margin-bottom: 20px;
	color: #000;
}

.privacy-content {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
}

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

.privacy-section p {
	margin-bottom: 20px;
}

.privacy-section ul {
	margin-bottom: 20px;
	padding-left: 25px;
}

.privacy-section ul li {
	margin-bottom: 10px;
}

.privacy-section a {
	color: #000;
	text-decoration: underline;
}

@media (max-width: 768px) {
	.privacy-notice {
		padding: 30px 0;
	}

	.privacy-notice h2 {
		font-size: 36px;
		font-weight: 900;
		margin-bottom: 30px;
	}

	.privacy-notice h3 {
		font-size: 24px;
		margin-bottom: 15px;
	}

	.privacy-content {
		font-size: 24px;
	}

	.privacy-section {
		margin-bottom: 30px;
	}
}

.third-parties {
	position: relative;
	padding: 130px 0;
	background-color: #F5BF4D;
	border-radius: 0 0 40px 40px;
}

.third-parties h2 {
	font-size: 36px;
	font-weight: 900;
	margin-bottom: 40px;
	color: #000;
}

.section-description {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
	margin-bottom: 40px;
}

.description p {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
	margin-bottom: 20px;
}

.description p:last-child {
	margin-bottom: 0;
}

.table-responsive {
	margin-bottom: 60px;
	border: 1px solid black;
	border-radius: 24px;
}

.privacy-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 20px;
	overflow: hidden;
	background: transparent;
}

.privacy-table th {
	padding: 15px;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 400;
	text-align: center;
    vertical-align: middle;
	background: #000;
	color: #fff;
	border: none;
}

.privacy-table td {
	padding: 15px 0;
	font-size: 16px;
	line-height: 1.4;
	background: #F5BF4D;
	text-align: center;
	vertical-align: middle;
}
.privacy-table td:not(:last-child) {
    border-right: 1px solid #000;
}

/* Увеличиваем отступы между строками в ячейках с переносами */
.privacy-table td br {
	content: "";
	display: block;
	margin-top: 8px;
}

@media (max-width: 768px) {
	.third-parties {
		padding: 30px 0;
	}

	.third-parties h2 {
		font-size: 36px;
		font-weight: 900;
		margin: 40px 0 20px;
	}

	.section-description,
	.description p {
		font-size: 24px;
	}

	.table-responsive {
		margin-bottom: 40px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.privacy-table th,
	.privacy-table td {
		font-size: 14px;
		padding: 10px;
		white-space: nowrap;
	}

	.description p {
		margin-bottom: 15px;
	}
}

.data-usage {
	padding: 100px 0;
	background-color: #fff;
}

.data-usage h2 {
	font-size: 36px;
	font-weight: 900;
	margin-bottom: 40px;
	color: #000;
}

.data-usage h3 {
	font-size: 36px;
	font-weight: 900;
	margin-bottom: 20px;
	margin-top: 40px;
	color: #000;
}

.data-usage-description {
	margin-bottom: 40px;
}

.data-usage-description p {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
	margin-bottom: 20px;
}

.data-usage-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #000;
    text-align: center;
}

.data-usage-table th {
    padding: 15px;
    font-size: 16px;
    line-height: 1.4;
    background: #F5BF4D;
    color: #000;
    font-weight: 400;
    text-align: center;
}

.data-usage-table th:last-child {
    border-right: none; /* убираем правую границу у последней ячейки заголовка */
}

.data-usage-table td {
    padding: 15px;
    font-size: 16px;
    line-height: 1.4;
    background: #fff;
    text-align: center;
    vertical-align: middle;
    border-right: 1px solid #000; /* добавляем правую границу */
    border-top: 1px solid #000; /* добавляем верхнюю границу для разделения строк */
}

.data-usage-table td:last-child {
    border-right: none; /* убираем правую границу у последней ячейки */
}

@media (max-width: 768px) {
	.data-usage {
		padding: 30px 0;
	}

	.data-usage h2 {
		font-size: 36px;
		margin-bottom: 30px;
	}

	.data-usage h3 {
		font-size: 24px;
		margin-bottom: 15px;
		margin-top: 30px;
	}

	.data-usage-description p {
		font-size: 24px;
		margin-bottom: 15px;
	}

	.data-usage-table {
		overflow-x: auto;
		display: block;
		-webkit-overflow-scrolling: touch;
	}

	.data-usage-table th,
	.data-usage-table td {
		font-size: 14px;
		padding: 10px;
		white-space: nowrap;
	}
}

.data-rights {
	position: relative;
	padding: 130px 0;
	background-color: #F5BF4D;
	border-radius: 0 0 40px 40px;
}

.data-rights h2 {
	font-size: 36px;
	font-weight: 900;
	margin-bottom: 40px;
	color: #000;
}

.data-rights-description {
	margin-bottom: 40px;
}

.data-rights-description p {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
	margin-bottom: 20px;
}

.data-rights-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.rights-item h3 {
	font-size: 24px;
	font-weight: 900;
	margin-bottom: 10px;
	color: #000;
	display: inline;
}

.rights-item p {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
	margin: 0;
	display: inline;
}

.rights-item a {
	color: #000;
	text-decoration: underline;
}

@media (max-width: 768px) {
	.data-rights {
		padding: 30px 0;
	}

	.data-rights h2 {
		font-size: 36px;
		margin-top: 40px;
		margin-bottom: 30px;
	}

	.data-rights-description p {
		font-size: 24px;
		margin-bottom: 15px;
	}

	.rights-item {
		margin-bottom: 15px;
	}

	.rights-item h3 {
		font-size: 24px;
		margin-bottom: 5px;
		display: block;
	}

	.rights-item p {
		font-size: 24px;
	}
}

.security-measures {
	padding: 100px 0;
	background-color: #fff;
	border-radius: 0 0 40px 40px;
}

.security-measures h2 {
	font-size: 36px;
	font-weight: 900;
	margin-bottom: 40px;
	color: #000;
}

.security-description {
	margin-bottom: 40px;
}

.security-description p {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
	margin-bottom: 20px;
}

.security-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 40px;
}

.measure-item {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
	position: relative;
	padding-left: 24px;
}

.measure-item:before {
	content: "•";
	position: absolute;
	left: 0;
	color: #000;
}

.cookies-info {
	margin-top: 40px;
}

.cookies-info p {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.security-measures {
		padding: 30px 0;
	}

	.security-measures h2 {
		font-size: 36px;
		margin-bottom: 30px;
	}

	.security-description {
		margin-bottom: 30px;
	}

	.security-list {
		gap: 10px;
		margin-bottom: 30px;
	}

	.measure-item {
		font-size: 24px;
	}

	.cookies-info {
		margin-top: 30px;
	}

	.cookies-info p {
		font-size: 24px;
	}
}

.contact-officer {
	position: relative;
	padding: 130px 0;
	background-color: #F5BF4D;
	border-radius: 0 0 40px 40px;
}

.contact-officer h2 {
	font-size: 36px;
	font-weight: 900;
	margin-bottom: 40px;
	color: #000;
}

.officer-content p {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
	margin-bottom: 20px;
}

.officer-content a {
	color: #000;
	text-decoration: underline;
}

@media (max-width: 768px) {
	.contact-officer {
		padding: 30px 0;
	}

	.contact-officer h2 {
		font-size: 36px;
		margin-top: 40px;
		margin-bottom: 30px;
	}

	.officer-content p {
		font-size: 24px;
		margin-bottom: 15px;
	}
}

.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 91%;
    /* Изменяем формат цвета фона для лучшей поддержки в Safari */
    background: rgba(245, 245, 245, 0.5);
    /* Добавляем префикс для Safari */
    -webkit-backdrop-filter: blur(80px);
    backdrop-filter: blur(80px);
    color: white;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 1000;
    /* Добавляем transform в transition для плавной анимации в Safari */
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 16px;
    /* Добавляем резервный фон для Safari, если backdrop-filter не поддерживается */
    @supports not (backdrop-filter: blur(80px)) {
        background: rgba(245, 245, 245, 0.95);
    }
}

/* Остальные стили остаются без изменений */

.cookie-content {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    flex: 1;
    color: #000000;
}

.cookie-button {
    background: #F5BF4D;
    border: none;
    padding: 8px 24px;
    border-radius: 8px;
    color: black;
    font-weight: 900;
    font-size: 20px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.cookie-button:hover {
    background: #E9B549;
}

.cookie-notice.hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .cookie-notice {
        bottom: 10px;
        flex-direction: column;
        padding: 15px;
    }
    
    .cookie-content {
        font-size: 12px;
    }
    
    .cookie-button {
        width: 100%;
    }
}

.cookie-info {
    padding: 100px 0;
    background-color: #fff;
    border-radius: 0 0 40px 40px;
}

.cookie-info h2 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 40px;
    color: #000;
}

.cookie-info h3 {
    font-size: 36px;
    font-weight: 900;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #000;
}

.cookie-info h4 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #000;
}

.cookie-intro,
.cookie-description,
.cookie-type,
.cookie-contact {
    margin-bottom: 40px;
}

.cookie-info p {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    margin-bottom: 20px;
}

.cookie-info a {
    color: #000;
    text-decoration: underline;
}

.cookie-types {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (max-width: 768px) {
    .cookie-info {
        padding: 30px 0;
    }

    .cookie-info h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .cookie-info h3 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .cookie-info h4 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .cookie-intro,
    .cookie-description,
    .cookie-type,
    .cookie-contact {
        margin-bottom: 30px;
    }

    .cookie-info p {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .cookie-types {
        gap: 30px;
    }
}

.nav-a {
    text-decoration: none;
}
.nav-a:hover {
    text-decoration: none;
}
}
}