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

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

body {
    font-family: 'Orbitron', monospace;
    line-height: 1.6;
    color: #fff;
    background-color: #1a1a1a;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.cookie-content {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    border: 2px solid rgba(52, 168, 83, 0.3);
}

.cookie-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: rgba(52, 168, 83, 1);
}

.cookie-content h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 24px;
}

.cookie-content p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.cookie-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}

.cookie-btn.accept {
    background: rgba(52, 168, 83, 1);
    color: #fff;
}

.cookie-btn.accept:hover {
    background: rgba(52, 168, 83, 0.8);
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background: transparent;
    color: rgba(52, 168, 83, 1);
    border: 2px solid rgba(52, 168, 83, 1);
}

.cookie-btn.reject:hover {
    background: rgba(52, 168, 83, 0.1);
}

/* Header */
.header {
    background: rgba(26, 26, 26, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    text-decoration: unset;
}

.nav {
    display: flex;
    gap: 16px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    padding: 8px;
    background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.nav a:hover {
    color: rgba(52, 168, 83, 1);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero-text p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.download-btn {
}

.download-btn img:hover {
    transform: translateY(-2px);
    
}

.download-btn img {
  height: 63px;
  width: auto;
  transition: all 0.3s ease;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    padding: 40px 0;
    background: #fff;
    color: #333;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #333;
}

.about p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #666;
}

.about .download-btn {
    color: #fff;
}

/* Features Section */
.features {
    padding: 40px 0;
    background: #1a1a1a;
}

.features h2 {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.features .container > p {
    text-align: center;
    color: #ccc;
    font-size: 16px;
}

.features-grid {
  margin-top: 32px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-card.green {
    background: rgba(52, 168, 83, 1);
    color: #fff;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(52, 168, 83, 0.3);
}

.feature-number {
    width: 50px;
    height: 50px;
    background: rgba(52, 168, 83, 1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-card.green .feature-number {
    background: #fff;
    color: rgba(52, 168, 83, 1);
}

.feature-card h3 {
  color: #000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card.green h3 {
    color: #fff;
}

.feature-card p {
    color: #000;
    font-size: 14px;
    line-height: 1.5;
}

.feature-card.green p {
    color: #fff;
}

/* Gallery Section */
.gallery {
    padding: 40px 0;
    background: #1a1a1a;
}

.gallery h2 {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.gallery .container > p {
    text-align: center;
    color: #ccc;
    margin-bottom: 32px;
    font-size: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
}

.gallery .download-btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

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

.reviews h2 {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 24px;
    color: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    color: #333;
}

.review-card.green {
    background: rgba(52, 168, 83, 1);
    color: #fff;
}

.reviewer {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.reviewer img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.reviewer h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.reviewer p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.review-card.green .reviewer p {
    color: #fff;
}

/* Contact Section */
.contact {
    padding: 40px 0;
    background: #1a1a1a;
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: rgba(255, 255, 255, 1);
  border-radius: 12px;
  padding: 32px;
}


.contact h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #000;
}

.contact p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #000;
}


.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(52, 168, 83, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #000;
    font-family: 'Orbitron', monospace;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(52, 168, 83, 1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: rgba(52, 168, 83, 1);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: rgba(52, 168, 83, 0.8);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #0a0a0a;
    border-top: 2px solid rgba(52, 168, 83, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: unset;
}

.footer-links {
    text-align: right;
}

.footer-links p {
    color: #ccc;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: rgba(52, 168, 83, 1);
}

/* Thank Page Styles */
.thank-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 40px 20px;
}

.thank-content {
    text-align: center;
    max-width: 600px;
    background: #2a2a2a;
    padding: 60px 40px;
    border-radius: 20px;
    border: 2px solid rgba(52, 168, 83, 0.3);
}

.thank-icon {
    font-size: 80px;
    color: rgba(52, 168, 83, 1);
    margin-bottom: 30px;
}

.thank-content h1 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
}

.thank-content p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.back-btn {
    display: inline-block;
    padding: 15px 30px;
    background: rgba(52, 168, 83, 1);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(52, 168, 83, 0.8);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .nav {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .cookie-content {
        margin: 20px;
        padding: 30px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }

    .contact .container {
      grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .footer-nav {
      flex-direction: column;
    }
    .features h2,
    .gallery h2,
    .reviews h2,
    .contact h2,
    .about h2 {
        font-size: 28px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .about,
    .features,
    .gallery,
    .reviews,
    .contact {
        padding: 60px 0;
    }
    
    .feature-card,
    .review-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

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

.policy h1 {
  font-weight: 800;
  font-size: 50px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 24px;
}

@media (max-width:768px){
    .policy h1 {
      font-size: 36px;
    }
}

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

.policy-content li {
  list-style-position: inside;
}

.policy-content a {
  color: inherit;
  text-decoration: unset;
}