/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.6;
    color: rgba(3, 5, 9, 1);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f5f5f5;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content h3 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.4;
    max-width: 600px;
}

.cookie-content a {
    color: #007bff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 200px;
}

.btn-accept, .btn-reject {
    padding: 12px 24px;
    border: 1px solid #333;
    border-radius: 25px;
    background: white;
    cursor: pointer;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
}

.btn-accept:hover, .btn-reject:hover {
    background: #333;
    color: white;
}

/* Navigation */
.navbar {
    background: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #eee;
    transition: top 0.3s ease;
}

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

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: rgba(3, 5, 9, 1);
    text-decoration: unset;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
    position: relative;
}

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

.hero-image {
    height: 435px;
    width: 100%;
    
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* About Section */
.about {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.star-icon {
    font-size: 48px;
    
    margin-bottom: 30px;
}

.about h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    
}

.about-content {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left;
}

.about-content p {
    font-size: 16px;
    text-align: center;
    
}

.about-content ul {
    padding-left: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.about-content li {
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
}

.btn-more {
  border: 1px solid rgba(3, 5, 9, 1);
    background: transparent;
    color: rgba(3, 5, 9, 1);
    padding: 15px 30px;
    border-radius: 40px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: rgba(3, 5, 9, 1);
    color: #fff;
}

/* Reviews Section */
.reviews {
    padding: 60px 0;
    
}

.reviews h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.review-card {
  position: relative;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card img {
  position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info {
    padding: 24px;
    z-index: 2;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-info h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
    color: rgba(246, 250, 251, 1);
    text-transform: uppercase;
    
}


.price {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.google-play {
  height: 56px;
  display: block;
  z-index: 2;
  position: relative;
  margin-top: auto;
}

.google-play img {
  position: relative;
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
    background: white;
}

.gallery h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 420px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    
}

.faq h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    
}

.faq-toggle {
    font-size: 24px;
    
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 16px;
    
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: rgba(3, 5, 9, 1);
    color: white;
    text-align: center;
}

textarea {
  resize: none;
}

.contact h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    background: white;
    
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.btn-submit {
    background: #667eea;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #5a6fd8;
}

.contact-links {
    margin: 40px 0 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.contact-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: #ccc;
}

.copyright {
    font-size: 14px;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-buttons {
        flex-direction: row;
        min-width: auto;
        width: 100%;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 60px;
    }
    
    .about h2,
    .reviews h2,
    .gallery h2,
    .faq h2,
    .contact h2 {
        font-size: 28px;
    }
    
    .reviews-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 80px 15px 30px;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .about,
    .reviews,
    .gallery,
    .faq,
    .contact {
        padding: 60px 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hide cookie banner initially */
.cookie-banner {
    display: none;
}

.cookie-banner.show {
    display: flex;
}

.policy {
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 60px;
}

.policy h1 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 36px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}