/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #6c63ff;
    --primary-dark: #5a52d3;
    --secondary-color: #ffd700;
    --accent-green: #4caf50;
    --accent-orange: #ff9800;
    --text-light: #ffffff;
    --text-dark: #333333;
    --gradient: linear-gradient(135deg, #6c63ff 0%, #8a7cff 100%);
}

body {
    background: var(--gradient);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Logo */
.navbar {
    padding: 1.5rem 5%;
    position: relative;
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    display: inline-block;
    transition: font-size 0.3s ease;
}

/* Responsive logo size */
@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5% 10%;
    position: relative;
    min-height: calc(100vh - 80px);
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 90%;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: flex-start; 
    position: relative;
    z-index: 2;
    margin-top: 2rem;
    width: 90%; 
    max-width: 600px; 
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.1rem;
}

.btn-download {
    background: var(--text-light);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

/* Decorative Elements */
.decoration {
    position: absolute;
    z-index: -1;
}

.star {
    top: -20px;
    left: -20px;
    color: var(--secondary-color);
    font-size: 2rem;
    animation: pulse 2s infinite alternate;
}

.circle {
    width: 100px;
    height: 100px;
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    bottom: 50px;
    right: -30px;
    opacity: 0.6;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* Responsive Design */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-light);
    transition: all 0.3s ease-in-out;
}

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-color);
}

.footer-link i {
    margin-left: 0.5rem;
    font-size: 1.1em;
}


.faq-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    max-width: 900px;
    margin: 3rem auto 2rem auto;
    padding: 2.5rem 2rem 2rem 2rem;
    box-shadow: 0 8px 32px rgba(108, 99, 255, 0.08);
    color: var(--text-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2.2rem;
    letter-spacing: 1px;
    color: var(--secondary-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: rgba(108, 99, 255, 0.09);
    border-radius: 18px;
    padding: 1.5rem 1.5rem 1.2rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.faq-item:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 8px 24px rgba(108, 99, 255, 0.13);
}
.faq-item h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(44,44,44,0.18), 0 1px 1px rgba(0,0,0,0.08);
}
.faq-item p {
    color: var(--text-light);
    opacity: 0.92;
    font-size: 1.08rem;
    line-height: 1.7;
}

.faq-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border-bottom: 1px dashed rgba(255,255,255,0.4);
}

.faq-item a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

@media (max-width: 600px) {
    .faq-section {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
    .faq-section h2 {
        font-size: 1.4rem;
    }
    .faq-item {
        padding: 1rem 0.8rem 0.8rem 0.8rem;
    }
    .faq-item h3 {
        font-size: 1.05rem;
    }
    .faq-item p {
        font-size: 0.98rem;
    }
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

/* Additional Decorative Elements */
.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    top: -250px;
    right: -250px;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    bottom: -150px;
    left: -150px;
    z-index: 0;
}
