/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Passion One', cursive;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Passion One', cursive;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.text-blue {
    color: #1E88E5;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cookie-content h3 {
    color: #2C3E50;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.cookie-content p {
    margin-bottom: 30px;
    color: #666;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

.cookie-content a {
    color: #1E88E5;
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-accept {
    background: #1E88E5;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept:hover {
    background: #1976D2;
}

.btn-refuse {
    background: transparent;
    color: #666;
    border: none;
    padding: 10px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-refuse:hover {
    color: #333;
}

.cookie-consent.hidden {
    display: none;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 50px;
    height: 50px;
}

.logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1E88E5;
    text-transform: uppercase;
    line-height: 1.1;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #1E88E5;
}

.btn-download {
    background: #1E88E5;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-download:hover {
    background: #1976D2;
}

/* Burger Menu */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #87CEEB 0%, #4FC3F7 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 30px;
    color: #2C3E50;
}

.hero-text p {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #2C3E50;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.google-play img {
    width: 180px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.google-play img:hover {
    transform: scale(1.05);
}

.hero-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
}

/* Description Section */
.description {
    padding: 80px 0;
    background: white;
}

.description h2 {
    color: #2C3E50;
}

.description p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    text-align: center;
    color: #666;
    font-family: Arial, sans-serif;
    line-height: 1.7;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #87CEEB 0%, #4FC3F7 100%);
}

.features h2 {
    color: #2C3E50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 110px;
   
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon img {
    width: 100%;
    
}

.feature-card h3 {
    color: #2C3E50;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: white;
}

.gallery h2 {
    color: #2C3E50;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #2C3E50;
    color: white;
}

.testimonials h2 {
    color: white;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.testimonial-avatar {
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.testimonial-content h4 {
    color: #1E88E5;
    margin-bottom: 10px;
    font-size: 1rem;
}

.testimonial-content p {
    color: #ccc;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-links h4 {
    font-size: 1rem;
    color: #1E88E5;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-links h4:hover {
    color: #4FC3F7;
}

.footer-info {
    margin-bottom: 20px;
}

.footer-info p {
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 5px;
}

.footer-copyright p {
    font-family: Arial, sans-serif;
    font-size: 0.8rem;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .burger-btn {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .description,
    .features,
    .gallery,
    .testimonials {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .cookie-content h3 {
        font-size: 1.5rem;
    }

    .testimonial {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .feature-card,
    .testimonial {
        padding: 20px;
    }

    .google-play img {
        width: 150px;
    }
}
              .page {
                padding: 180px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                