@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Oswald:wght@200..700&display=swap');

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
    list-style: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

main {
    background-color: #0a1a3b;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Oswald", sans-serif;
}
  
img {
    display: block;
    height: auto;
    padding: 0;
    margin: 0;
}
  
address {
    font-style: normal;
}

html {
    height: 100%;
    scroll-behavior: smooth;
    font-family: "Oswald", sans-serif;
}

header {
    background-color: #0a1a3b;
    color: #ffffff;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-nav ul li {
    margin: 0 15px;
}

.header-nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 21px;
}

.header-nav ul li a:hover {
    color: #66ccff;
}

.logo-head img {
    height: 120px;
    display: block;
}

.mobile-menu-burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 2px;
}

@media (max-width: 992px) {
    .header-nav ul {
        display: none;
        position: absolute;
        top: 145px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #0a1a3b;
        padding: 20px 0;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .header-nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    .mobile-menu-burger {
        display: flex;
    }

    .header-nav.active ul {
        display: flex;
        z-index: 999;
    }
}

.hero-start {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.550), rgba(0, 0, 0, 0.550)),
        url('/assets/img/hero.jpg') center/cover no-repeat;
    color: #ffffff;
    text-align: center;
    padding: 120px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-start h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-start p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #e0e0e0;
}

.hero-start a {
    display: inline-block;
    padding: 15px 30px;
    background-color: #1a2a5b;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.3s;
}

.hero-start a:hover {
    background-color: #2c3a7a;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .hero-start h1 {
        font-size: 2.5rem;
    }

    .hero-start p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-start h1 {
        font-size: 2rem;
    }

    .hero-start p {
        font-size: 1rem;
    }

    .hero-start a {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

.why-we {
    background-color: #0a1a3b;
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

.why-we h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-we p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
    color: #e0e0e0;
}

.why-we-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
}

.why-we-list li {
    background-color: #142550;
    border-radius: 12px;
    padding: 20px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-we-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.why-we-list img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.why-we-list h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.why-we-list p {
    font-size: 1rem;
    color: #d0d0d0;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .why-we h2 {
        font-size: 2.2rem;
    }

    .why-we p {
        font-size: 1rem;
    }

    .why-we-list {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .why-we h2 {
        font-size: 1.8rem;
    }

    .why-we p {
        font-size: 0.95rem;
    }

    .why-we-list li {
        padding: 15px;
    }

    .why-we-list img {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .why-we-list h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .why-we-list p {
        font-size: 0.9rem;
    }
}

.strategy {
    background-color: #0a1a3b;
    color: #ffffff;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.strategy h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.strategy p {
    font-size: 1.1rem;
    max-width: 800px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #e0e0e0;
    text-align: center;
}

.strategy img {
    width: 100%;
    max-width: 800px;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    object-fit: cover;
}

@media (min-width: 992px) {
    .strategy {
        flex-direction: column;
        text-align: left;
        justify-content: center;
        gap: 20px;
    }

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

    .strategy img {
        margin-top: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .strategy h2 {
        font-size: 2.2rem;
    }

    .strategy p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .strategy h2 {
        font-size: 1.8rem;
    }

    .strategy p {
        font-size: 0.95rem;
    }
}

.cta {
    background-color: #0a1a3b;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.cta-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
}

.cta-list li {
    background-color: #142550;
    border-radius: 12px;
    padding: 30px 20px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.cta-list h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.cta-list p {
    font-size: 1rem;
    color: #d0d0d0;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .cta-list {
        gap: 20px;
    }

    .cta-list h3 {
        font-size: 1.3rem;
    }

    .cta-list p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .cta-list {
        flex-direction: column;
        gap: 15px;
    }

    .cta-list h3 {
        font-size: 1.2rem;
    }

    .cta-list p {
        font-size: 0.9rem;
    }

    .cta-list li {
        padding: 20px;
    }
}

.open {
    background-color: #0a1a3b;
    color: #ffffff;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.open-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.open-text p {
    font-size: 1.1rem;
    max-width: 700px;
    line-height: 1.6;
    color: #e0e0e0;
}

.open img {
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    object-fit: cover;
}

@media (min-width: 992px) {
    .open {
        flex-direction: row;
        text-align: left;
        justify-content: center;
    }

    .open-text {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .open-text h2 {
        font-size: 2.2rem;
    }

    .open-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .open-text h2 {
        font-size: 1.8rem;
    }

    .open-text p {
        font-size: 0.95rem;
    }
}

.about {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.550), rgba(0, 0, 0, 0.55)),
        url('/assets/img/about.jpg') center/cover no-repeat;
    color: #ffffff;
    text-align: center;
    padding: 120px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about p {
    font-size: 1.1rem;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.about a {
    display: inline-block;
    padding: 15px 30px;
    background-color: #1a2a5b;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.3s;
}

.about a:hover {
    background-color: #2c3a7a;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .about h2 {
        font-size: 2.2rem;
    }

    .about p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about h2 {
        font-size: 1.8rem;
    }

    .about p {
        font-size: 0.95rem;
    }

    .about a {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

.advantages {
    background-color: #0a1a3b;
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

.advantages h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.advantages p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
    color: #e0e0e0;
}

.advantages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
}

.advantages-list li {
    background-color: #142550;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
}

.advantages-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.advantages-list span {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #66ccff;
    margin-bottom: 15px;
}

.advantages-list h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.advantages-list p {
    font-size: 1rem;
    color: #d0d0d0;
    line-height: 1.5;
    text-align: left;
}

@media (max-width: 992px) {
    .advantages h2 {
        font-size: 2.2rem;
    }

    .advantages p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .advantages h2 {
        font-size: 1.8rem;
    }

    .advantages p {
        font-size: 0.95rem;
    }

    .advantages-list li {
        padding: 20px;
    }

    .advantages-list span {
        font-size: 1.5rem;
    }

    .advantages-list h3 {
        font-size: 1.2rem;
    }

    .advantages-list p {
        font-size: 0.9rem;
    }
}

.gallery {
    background-color: #0a1a3b;
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.gallery p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
    color: #e0e0e0;
}

.gallery-wrap .swiper-slide {
    background-color: #142550;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #66ccff;
}

.swiper-pagination-bullet {
    background: #66ccff;
}

@media (max-width: 992px) {
    .gallery h2 {
        font-size: 2.2rem;
    }

    .gallery p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .gallery h2 {
        font-size: 1.8rem;
    }

    .gallery p {
        font-size: 0.95rem;
    }
}

.faq {
    background-color: #0a1a3b;
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.faq p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
    color: #e0e0e0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.faq-list li {
    background-color: #142550;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

.faq-list h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #66ccff;
    display: inline-block;
    margin: 15px 20px 0 20px;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    padding: 15px 20px;
    display: inline-block;
    color: #ffffff;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #66ccff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #d0d0d0;
    font-size: 1rem;
    line-height: 1.5;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-list li.active .faq-answer {
    max-height: 500px;
    padding: 15px 20px 20px 20px;
}

@media (max-width: 992px) {
    .faq h2 {
        font-size: 2.2rem;
    }

    .faq p {
        font-size: 1rem;
    }

    .faq-list h3 {
        font-size: 1.3rem;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .faq h2 {
        font-size: 1.8rem;
    }

    .faq p {
        font-size: 0.95rem;
    }

    .faq-list h3 {
        font-size: 1.2rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}

footer {
    background-color: #0a1a3b;
    color: #ffffff;
    padding: 60px 20px 20px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-first-container {
    flex: 1 1 250px;
}

.footer-first-container p {
    margin: 15px 0 20px 0;
    color: #d0d0d0;
    line-height: 1.5;
}

.footer-first-container-ph {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.footer-first-container-ph li img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: transform 0.3s;
}

.footer-first-container-ph li img:hover {
    transform: scale(1.1);
}

.footer-second-container {
    flex: 1 1 200px;
}

.footer-second-container h3 {
    margin-bottom: 15px;
    color: #66ccff;
}

.footer-second-container-list {
    list-style: none;
    padding: 0;
}

.footer-second-container-list li {
    margin-bottom: 10px;
}

.footer-second-container-list li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-second-container-list li a:hover {
    color: #66ccff;
}

.footer-third-container {
    flex: 1 1 200px;
}

.footer-third-container h3 {
    margin-bottom: 15px;
    color: #66ccff;
}

.footer-third-container ul {
    list-style: none;
    padding: 0;
}

.footer-third-container ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #d0d0d0;
}

.footer-third-container ul li img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.footer-third-container-email {
    display: flex;
    gap: 10px;
}

.footer-third-container-email input {
    padding: 10px;
    border-radius: 6px;
    border: none;
    flex: 1;
}

.footer-third-container-email button {
    padding: 10px 20px;
    background-color: #66ccff;
    border: none;
    border-radius: 6px;
    color: #0a1a3b;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer-third-container-email button:hover {
    background-color: #4db0e6;
}

.footer-copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 992px) {
    .footer-container {
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-third-container-email {
        flex-direction: column;
        width: 100%;
    }

    .footer-third-container-email input {
        width: 100%;
    }

    .footer-third-container-email button {
        width: 100%;
    }
}

.newsletter-message {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #66ccff;
    opacity: 0;
    transition: opacity 0.5s;
}
.newsletter-message.show {
    opacity: 1;
}

.privacy-policy {
    background-color: #0a1a3b;
    color: #ffffff;
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
}

.privacy-policy h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: #66ccff;
}

.privacy-policy h3 {
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #66ccff;
}

.privacy-policy p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.privacy-policy ul {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 0;
}

.privacy-policy ul li {
    margin-bottom: 10px;
    color: #d0d0d0;
}

.privacy-policy a {
    color: #66ccff;
    text-decoration: underline;
    transition: color 0.3s;
}

.privacy-policy a:hover {
    color: #99ddff;
}

@media (max-width: 992px) {
    .privacy-policy h2 {
        font-size: 2.2rem;
    }

    .privacy-policy h3 {
        font-size: 1.4rem;
    }

    .privacy-policy p,
    .privacy-policy ul li {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .privacy-policy h2 {
        font-size: 1.8rem;
    }

    .privacy-policy h3 {
        font-size: 1.2rem;
    }

    .privacy-policy p,
    .privacy-policy ul li {
        font-size: 0.95rem;
    }
}

section.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

