:root {
    --bg-color: #080b18;
    --accent-color: #357ff7;
    --heading-color: #fff;
    --text-color: #c1c7de;
    --block-border: 1px solid #41445c;
    --button-gradient: linear-gradient(to left, #4babf8 0%, #2d6ff6 40%, #4babf8 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;

    color: var(--text-color);
    line-height: 1.6;
    background: url('../img/back.jpg') center bottom no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.wrap{
    max-width: 1400px;
    width: 100%;
    margin: 20px auto;
    border-radius: 35px;
    background: #020204;
    padding: 0 20px;
    box-sizing: border-box;
    border: 1px solid #272832;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Exo 2", sans-serif;
    color: var(--heading-color);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h1 span{
    color: var(--accent-color);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.an_header {
    padding: 20px 0;
}

.an_header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.an_logo {
    font-family: "Exo 2", sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--heading-color);
}

.an_logo span {
    color: var(--accent-color);
}

.an_nav ul {
    display: flex;
    list-style: none;
}

.an_nav li {
    margin-left: 30px;
}

.an_nav a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.an_nav a:hover {
    color: var(--accent-color);
}


.an_banner {
    padding: 150px 0;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: url('../img/hero.jpg') left center no-repeat;
    background-size: cover;
}

.an_legal ul{
    padding-left: 20px;
    margin: 15px 0;
}

.an_legal h2{
    margin-bottom: 30px;
    font-size: 26px;
    margin-top: 30px;
}

.an_legal h3{
    margin: 20px 0 16px 0;
}

.an_legal a{
    color: var(--text-color);
    text-decoration: underline;
}

.an_banner h1 {
    margin-bottom: 1.5rem;
    max-width: 700px;
    width: 100%;
}

.an_banner p {
    max-width: 650px;
    margin: 0 0 2rem;
    font-size: 1.2rem;
}


.an_btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--button-gradient);
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
    background-size: 200% auto;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.an_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(39, 53, 181, 0.3);
    background-position: right center;
}


.an_about {
    padding: 100px 0;
}

.an_about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.an_about-item {
    padding: 30px;
    border: var(--block-border);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.an_about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.an_about-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    background-color: rgba(39, 53, 181, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.an_about-icon img {
    width: 50px;
}


.an_text-section {
    padding: 100px 0;
}

.an_text-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.an_text-content {
    flex: 1;
}

.an_text-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.an_text-image img {
    width: 100%;
    height: auto;
    display: block;
}

.an_highlight-box {
    background-color: rgba(39, 53, 181, 0.1);
    border-left: 1px solid #41445c;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 5px 5px 0;
}

.an_highlight-box p span{
    color:  var(--accent-color);
    font-weight: 700;
}

.an_highlight-box p:last-child{
    margin-bottom: 0;
}

.an_video-section {
    padding: 100px 0;
    text-align: center;
}

.an_video-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.an_video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.an_video-item {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.an_video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


.an_faq {
    padding: 100px 0;
}



.an_faq-item {
    margin-bottom: 20px;
    border: var(--block-border);
    border-radius: 10px;
    overflow: hidden;
}

.an_faq-question {
    padding: 20px;
    background-color: rgba(65, 68, 92, 0.2);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.an_faq-question:hover {
    background-color: rgba(65, 68, 92, 0.4);
}

.an_faq-question h3 {
    margin: 0;
}

.an_faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.an_faq-item.active .an_faq-answer {
    padding: 20px;
    max-height: 500px;
}

.an_faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.an_faq-item.active .an_faq-toggle {
    transform: rotate(45deg);
}


.an_footer {
    padding: 50px 0 20px;
}

.an_footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.an_footer-links {
    display: flex;
    gap: 30px;
}

.an_footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.an_footer-links a:hover {
    color: var(--accent-color);
}

.an_footer-disclaimer {
    font-size: 1rem;
    opacity: 0.7;
    margin: 25px 0;
    text-align: center;
    width: 100%;
}

.an_footer-copyright {
    text-align: center;
    width: 100%;
    padding-top: 20px;
    border-top: var(--block-border);
    font-size: 0.9rem;
    opacity: 0.7;
}


.an_shape {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.an_shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(39, 53, 181, 0.1) 0%, rgba(8, 11, 24, 0) 70%);
    top: 10%;
    left: 5%;
}

.an_shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(39, 53, 181, 0.05) 0%, rgba(8, 11, 24, 0) 70%);
    bottom: 20%;
    right: 10%;
}


@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .an_nav {
        display: none;
    }
    
    .an_about-grid {
        grid-template-columns: 1fr;
    }
    
    .an_text-container {
        flex-direction: column;
    }
    
    .an_video-grid {
        grid-template-columns: 1fr;
    }
    
    .an_footer-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .an_footer-links {
        justify-content: center;
    }
}

@media(max-width: 767px){
    .an_banner{
        padding: 70px 0;
    }
    .an_footer-links{
        gap: 15px;
        flex-wrap: wrap;
    }
    .an_faq-question h3{
        font-size: 18px;
    }
    .wrap{
        padding: 0;
    }
    .an_video-section{
        padding: 60px 0;
    }
}