﻿@charset "UTF-8";
textarea {
    width: 0px;
    height: 0px;
    all: unset;
}

html,
body {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    height: 100%;
}

h1,
h2,
h3 {
    padding: 0;
    margin: 0;
}

p {
    margin: 0;
    padding: 0;
}

img {
    margin: 0;
    padding: 0;
}

a {
    margin: 0;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
}

a,
a:active,
a:hover {
    text-decoration: none;
}

li {
    margin: 0;
    padding: 0;
}

ul {
    margin: 0;
    padding: 0;
}

button {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    /* Другие свойства по необходимости */
}

div {
    box-sizing: border-box;
}

input {
    all: unset;
}

a:focus,
a:active {
    text-decoration: none;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

a {
    text-decoration: none; /* Убирает подчеркивание */
    color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
    font-weight: normal; /* Устанавливает обычный вес шрифта */
    background: none; /* Убирает фоновый цвет */
    border: none; /* Убирает границу */
    outline: none; /* Убирает обводку */
}

body {
    font-family: 'Faculty Glyphic';
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #c77721;
    min-height: 100px;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: wrap;
    gap: 20px;
}
.header__logo {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
}
@media (max-width: 959px) {
    .header__logo {
        font-size: 30px;
    }
}
@media (max-width: 413px) {
    .header__logo {
        font-size: 23px;
    }
}
.header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    flex-direction: row;
    gap: 48px;
    font-size: 16px;
}
@media (max-width: 396px) {
    .header__nav {
        padding: 0;
    }
}
.header__nav__item {
    color: #ffffff;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}
.header__nav__item:hover {
    color: #ed2103;
}
.header__logo-item {
    width: 70px;
    height: 70px;
    border-radius: 5px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.main-button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: -moz-max-content;
    width: max-content;
    margin-top: 4px;
    padding: 15px 20px;
    border-radius: 50px;
    color: #fff;
    background-color: #1f3c88;
    box-sizing: border-box;
}
@media (max-width: 610px) {
    .main-button {
        font-size: 13px;
        margin-top: 5px;
        padding: 15px 25px;
        width: auto;
        height: auto;
    }
}
.main-button:hover {
    background-color: #26479a;
}

.header-main-button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: -moz-max-content;
    width: max-content;
    padding: 17px 17px;
    border-radius: 50px;
    color: #fff;
    background-color: #1f3c88;
    line-height: 0.9;
}
@media (max-width: 610px) {
    .header-main-button {
        font-size: 10px;
        padding: 10px 20px;
        width: auto;
        height: auto;
    }
}
.header-main-button:hover {
    background-color: #ffb563;
}

.footer {
    border-top: 1px solid #ddd;
    background: #c77721;
    padding: 0 20px;
    color: #333;
    text-align: center;
}

.footer__container {
    display: flex;
    flex-direction: row; /* Arrange the blocks in a row */
    justify-content: center; /*A Space between the blocks */
    align-items: center; /* Align the blocks to the top */
    text-align: center;
    gap: 40px; /* Add space between the blocks */
    padding: 20px;
}

.footer__disclaimer,
.footer__legal-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 80%; /* Limit each block to half the container width */
}

.footer__disclaimer-header {
    display: flex;
    flex-direction: row; /* Arrange the icon and title in a row */
    align-items: center; /* Center the icon and title vertically */
    justify-content: center; /* Center the icon and title horizontally */
    margin-bottom: 5px;
}

.footer__disclaimer-icon {
    width: 50px;
    height: 50px;
}

.footer__disclaimer-title {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin: 0; /* Remove default margin */
}

.footer__disclaimer-text {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    text-align: left; /* Left align text for readability */
}

.footer__legal-links {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center the links section vertically */
    align-items: center; /* Align the links to the left */
    text-align: left; /* Left align text for readability */
}

.footer__legal-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer__bottom-text {
    color: #fff;
}

.footer__legal-list {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer__link:hover {
    color: #ed2103;
}

.footer__bottom {
    padding-bottom: 10px;
    margin-top: 15px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    text-align: center;
    width: 100%;
}

.footer__bottom-links {
    margin-bottom: 20px;
}

.footer__bottom-link-block {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__bottom-link {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer__bottom-link:hover {
    color: #ed2103;
}

.footer__header {
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: center;
    margin-bottom: 10px;
    flex-direction: row;
    gap: 10px;
}

@media (max-width: 1119px) {
    .footer__container {
        flex-direction: column; /* Stack the blocks vertically */
        align-items: center; /* Center align blocks */
        gap: 20px; /* Adjust the gap between blocks */
    }
    .footer__disclaimer,
    .footer__legal-links {
        align-items: center;
        max-width: 100%; /* Allow each block to take full width */
        text-align: center; /* Center the text */
    }
    .footer__disclaimer-header {
        justify-content: center; /* Center the icon and title horizontally */
    }
    .footer__disclaimer-text,
    .footer__legal-links {
        text-align: center; /* Center-align text for consistency */
    }
    .footer__legal-links {
        align-items: center; /* Center the legal links block */
    }
    .footer__legal-list {
        align-items: center; /* Center the list items */
    }
}
@media (max-width: 480px) {
    .footer__disclaimer-title {
        font-size: 20px; /* Adjust title size for small screens */
    }
    .footer__legal-title {
        font-size: 18px; /* Adjust legal links title size for small screens */
    }
    .footer__link {
        font-size: 12px; /* Adjust link font size for small screens */
    }
    .footer__bottom-link-block {
        flex-direction: column; /* Stack bottom links vertically */
        gap: 10px; /* Reduce the gap between links */
    }
}
@media (max-width: 360px) {
    .footer__disclaimer-title {
        font-size: 18px; /* Further reduce title size */
    }
    .footer__legal-title {
        font-size: 16px; /* Further reduce legal title size */
    }
    .footer__link {
        font-size: 12px; /* Maintain small link size */
    }
    .footer__bottom-link-block {
        gap: 8px; /* Reduce gap further for very small screens */
    }
}
.name {
    font-size: 30px;
    font-weight: bold;
    text-align: left;
    color: #fff;
    margin-bottom: 5px;
}

@media (max-width: 1118px) {
    .name {
        align-items: center;
        text-align: center;
        justify-content: center;
    }
}
@media (max-width: 355px) {
    .name {
        font-size: 25px;
    }
}
@media (max-width: 1118px) {
    .footer__header {
        align-items: center;
        justify-content: center;
    }
}
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero.webp') no-repeat center center/cover;
    color: #fff;
}
.hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    /* Декоративні елементи — додатковий шар */
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.3),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
}
.hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: fadeIn 1.5s ease-out;
}
.hero .hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    color: #ed2103;
    background: linear-gradient(90deg, #ffffff, #ed2103);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (max-width: 1440px) {
    .hero .hero-content h1 {
        font-size: 3rem;
    }
}
@media (max-width: 1024px) {
    .hero .hero-content h1 {
        font-size: 2.5rem;
    }
}
@media (max-width: 450px) {
    .hero .hero-content h1 {
        font-size: 1.7rem;
    }
}
.hero .hero-content h1 .highlight {
    font-size: 1.5rem;
    display: inline-block;
    color: #ed2103;
    background: linear-gradient(90deg, #ffffff, #ed2103);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero .hero-content h2 {
    font-size: 2rem;
    color: #ed2103;
    letter-spacing: 0.1rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
@media (max-width: 653px) {
    .hero .hero-content h2 {
        font-size: 1.5rem;
    }
}
.hero .hero-content p {
    font-size: 1.25rem;
    max-width: 500px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    color: #ed2103;
}
.hero .hero-content .button-group {
    display: flex;
    gap: 1rem;
}
.hero .hero-content .button-group .hero-btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.hero .hero-content .button-group .hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.hero .hero-content .button-group .primary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #ed2103;
    color: #333;
}
@media (max-width: 653px) {
    .hero .hero-content .button-group .primary-btn {
        padding: 10px 30px;
        font-size: 13px;
    }
}
.hero .hero-content .button-group .primary-btn:hover {
    background-color: #ffffff;
    color: #ed2103;
}
.hero .hero-content .button-group .secondary-btn {
    background-color: transparent;
    border: 2px solid #ed2103;
    color: #ed2103;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
@media (max-width: 653px) {
    .hero .hero-content .button-group .secondary-btn {
        padding: 10px 30px;
        font-size: 13px;
    }
}
.hero .hero-content .button-group .secondary-btn:hover {
    background-color: #ed2103;
    color: #ffffff;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 1440px) {
    .hero .hero {
        height: 550px;
    }
    .hero .hero .hero-content h1 {
        font-size: 3rem;
    }
}
@media (max-width: 1024px) {
    .hero .hero {
        height: 500px;
    }
    .hero .hero .hero-content h1 {
        font-size: 2.5rem;
    }
}

.features {
    position: relative;
    padding: 4rem 2rem;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.features h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #ed2103;
    letter-spacing: 0.1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
.features .animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(189, 224, 254, 0.2),
        rgba(0, 0, 0, 0.8)
    );
    z-index: -1;
    overflow: hidden;
}
.features .animated-background::before,
.features .animated-background::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: move 12s infinite alternate ease-in-out;
}
.features .animated-background::before {
    top: 10%;
    left: 15%;
}
.features .animated-background::after {
    bottom: 10%;
    right: 20%;
}
@keyframes move {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, -50px) scale(1.2);
    }
}
.features .features-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}
.features .feature-card {
    background: linear-gradient(135deg, #ed2103, #cf9f21);
    color: #fff;
    border-radius: 25px;
    padding: 3rem;
    width: 48%;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 1063px) {
    .features .feature-card {
        width: 100%;
        padding: 15px;
    }
}
.features .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #cf9f21, #ed2103);
}
.features .feature-card .feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.features .feature-card .feature-icon img {
    width: 80%;
    height: auto;
    transition: transform 0.4s ease;
}
.features .feature-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}
.features .feature-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}
.features .feature-card:hover .feature-icon {
    transform: scale(1.2) rotateX(10deg) rotateY(10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1063px) {
    .features-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .feature-card {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .features {
        padding: 2rem 1rem;
    }
    .features h2 {
        font-size: 2.5rem;
    }
    .features .features-content {
        flex-direction: column;
    }
    .features .feature-card {
        padding: 2rem;
    }
    .features .feature-card h3 {
        font-size: 1.8rem;
    }
    .features .feature-card p {
        font-size: 1rem;
    }
}
.about-us {
    position: relative;
    padding: 5rem 2rem;
    color: #fff;
    overflow: hidden;
}
@media (max-width: 768px) {
    .about-us {
        padding: 10px;
    }
}
.about-us .animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(18 109 128), rgb(236 159 31));
    z-index: -1;
    overflow: hidden;
}
.about-us .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}
@media (max-width: 1492px) {
    .about-us .about-container {
        flex-direction: column;
    }
}
.about-us .about-text {
    flex: 1;
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.5);
    border-left: 5px solid #ed2103;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}
@media (max-width: 768px) {
    .about-us .about-text {
        padding: 20px;
    }
}
.about-us .about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #ed2103;
}
@media (max-width: 768px) {
    .about-us .about-text h2 {
        font-size: 2.5rem;
    }
}
.about-us .about-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}
@media (max-width: 1024px) {
    .about-us .about-text {
        text-align: center;
    }
}
.about-us .about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}
.about-us .about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
@media (max-width: 1492px) {
    .about-us .about-image img {
        width: 80%;
    }
}
@media (max-width: 484px) {
    .about-us .about-image img {
        width: 100%;
    }
}
.about-us .about-image img:hover {
    transform: scale(1.05);
}
@media (max-width: 1440px) {
    .about-us .about-us {
        padding: 4rem 1.5rem;
    }
    .about-us .about-us .about-text h2 {
        font-size: 2.5rem;
    }
    .about-us .about-us .about-text p {
        font-size: 1rem;
    }
    .about-us .about-us .about-image img {
        width: 75%;
    }
}
@media (max-width: 1024px) {
    .about-us .about-us {
        padding: 3.5rem 1rem;
    }
    .about-us .about-us .about-text h2 {
        font-size: 2.3rem;
    }
    .about-us .about-us .about-text p {
        font-size: 0.95rem;
    }
    .about-us .about-us .about-image img {
        width: 90%;
    }
}
@media (max-width: 768px) {
    .about-us .about-us {
        padding: 3rem 1rem;
    }
    .about-us .about-us .about-text h2 {
        font-size: 2rem;
    }
    .about-us .about-us .about-text p {
        font-size: 0.9rem;
    }
    .about-us .about-us .about-image img {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .about-us .about-us {
        padding: 2rem 1rem;
    }
    .about-us .about-us .about-text h2 {
        font-size: 1.8rem;
    }
    .about-us .about-us .about-text p {
        font-size: 0.85rem;
    }
    .about-us .about-us .about-image img {
        width: 90%;
    }
}
@media (max-width: 320px) {
    .about-us .about-us {
        padding: 1.5rem 0.8rem;
    }
    .about-us .about-us .about-text h2 {
        font-size: 1.6rem;
    }
    .about-us .about-us .about-text p {
        font-size: 0.8rem;
    }
    .about-us .about-us .about-image img {
        width: 85%;
    }
}

.app-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background: linear-gradient(90deg, #ed2103 0%, #d4eaf5 50%, #a3cfdc 100%);
    background-size: 200% 200%;
    animation: gradientAnimation 10s ease infinite;
    font-family: 'Faculty Glyphic';
    position: relative;
}

@media (max-width: 450px) {
    .app-banner {
        padding: 10px;
    }
}
.app-banner__content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin: 0 auto;
}

@media (max-width: 1300px) {
    .app-banner__content {
        flex-direction: column-reverse;
        align-items: center;
    }
}
.app-banner__image--first {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
}

.app-banner__image--first img {
    width: 400px;
    /* height: 400px; */
    border-radius: 15px;
}

.app-banner__text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 1;
    padding: 15px;
}

@media (max-width: 1300px) {
    .app-banner__text {
        text-align: center;
        padding: 0;
    }
}
@media (max-width: 1300px) {
    .app-banner__image--first img {
        display: none;
    }
}
.app-banner__title {
    display: flex;
    text-align: center;
    font-size: 35px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

@media (max-width: 1300px) {
    .app-banner__title {
        font-size: 25px;
    }
}
.app-banner__subtitle {
    display: flex;
    text-align: center;
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

@media (max-width: 1300px) {
    .app-banner__subtitle {
        font-size: 1em;
    }
}
.app-banner__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.app-banner__form:hover {
    transform: scale(1.05);
}

.app-banner__form-label {
    text-align: center;
    margin-bottom: 10px;
    color: #333;
    font-weight: bold;
}

.app-banner__form-input {
    padding: 10px;
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 1em;
    margin-bottom: 10px;
    width: 100%;
    max-width: 300px;
    color: #333;
}

.app-banner__form-input::-moz-placeholder {
    color: #333;
}

.app-banner__form-input::placeholder {
    color: #333;
}

.app-banner__form-button {
    padding: 10px 20px;
    background-color: #67a9b1;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.app-banner__form-button:hover {
    background-color: #3e7f86;
}

.thanks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.thanks__content {
    max-width: 600px;
    background: linear-gradient(135deg, #ed2103 0%, #8ac6d1 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.thanks__title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
}

.thanks__message {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
}

.faq-section {
    padding: 40px;
    background-color: #cf9f21;
    color: #333;
}
.faq-section .faq-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}
.faq-section .faq-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-section .faq-card {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq-section .faq-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.faq-section .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
}
.faq-section .faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}
.faq-section .faq-answer {
    margin-top: 15px;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    display: none;
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease;
}
.faq-section .faq-answer.active {
    display: block;
}
@media (max-width: 768px) {
    .faq-section .faq-card {
        width: 100%;
    }
}

@media (max-width: 2646px) {
    .faq-section {
        padding: 35px;
    }
    .faq-title {
        font-size: 2.3rem;
    }
    .faq-card {
        padding: 18px;
    }
    .faq-question {
        font-size: 1.15rem;
    }
    .faq-answer {
        font-size: 0.95rem;
    }
}
@media (max-width: 1920px) {
    .faq-section {
        padding: 30px;
    }
    .faq-title {
        font-size: 2rem;
    }
    .faq-card {
        padding: 16px;
    }
    .faq-question {
        font-size: 1.1rem;
    }
    .faq-answer {
        font-size: 0.9rem;
    }
}
@media (max-width: 1440px) {
    .faq-section {
        padding: 25px;
    }
    .faq-title {
        font-size: 1.8rem;
    }
    .faq-card {
        padding: 15px;
    }
    .faq-question {
        font-size: 1.05rem;
    }
    .faq-answer {
        font-size: 0.85rem;
    }
}
@media (max-width: 1024px) {
    .faq-section {
        padding: 20px;
    }
    .faq-title {
        font-size: 1.6rem;
    }
    .faq-card {
        padding: 14px;
    }
    .faq-question {
        font-size: 1rem;
    }
    .faq-answer {
        font-size: 0.8rem;
    }
}
@media (max-width: 768px) {
    .faq-section {
        padding: 15px;
    }
    .faq-title {
        font-size: 1.5rem;
    }
    .faq-card {
        padding: 12px;
    }
    .faq-question {
        font-size: 0.95rem;
    }
    .faq-answer {
        font-size: 0.75rem;
    }
}
@media (max-width: 480px) {
    .faq-section {
        padding: 10px;
    }
    .faq-title {
        font-size: 1.4rem;
    }
    .faq-card {
        padding: 10px;
    }
    .faq-question {
        font-size: 0.9rem;
    }
    .faq-answer {
        font-size: 0.7rem;
    }
}
@media (max-width: 320px) {
    .faq-section {
        padding: 8px;
    }
    .faq-title {
        font-size: 1.3rem;
    }
    .faq-card {
        padding: 8px;
    }
    .faq-question {
        font-size: 0.85rem;
    }
    .faq-answer {
        font-size: 0.65rem;
    }
}
.privacy-policy {
    background-color: #ed2103;
    padding: 50px 20px;
    color: #333;
}
.privacy-policy .privacy-policy__container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.privacy-policy .privacy-policy__container h1 {
    font-size: 2.8rem;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}
.privacy-policy .privacy-policy__container h2 {
    font-size: 1.8rem;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}
.privacy-policy .privacy-policy__container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}
.privacy-policy .privacy-policy__container ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}
.privacy-policy .privacy-policy__container ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #333;
}
.privacy-policy .privacy-policy__container a {
    color: #333;
    text-decoration: underline;
}
.privacy-policy .privacy-policy__container a:hover {
    text-decoration: none;
    color: #cf9f21;
}
@media (max-width: 768px) {
    .privacy-policy .privacy-policy__container {
        padding: 30px;
    }
    .privacy-policy h1 {
        font-size: 2.2rem;
    }
    .privacy-policy h2 {
        font-size: 1.5rem;
    }
    .privacy-policy p,
    .privacy-policy ul li {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .privacy-policy .privacy-policy__container {
        padding: 20px;
    }
    .privacy-policy h1 {
        font-size: 2rem;
    }
    .privacy-policy h2 {
        font-size: 1.3rem;
    }
    .privacy-policy p,
    .privacy-policy ul li {
        font-size: 0.9rem;
    }
} /*# sourceMappingURL=main.css.map */
