/* Theme Color Palette */
:root {
    --dark-gray: #1f1e23;
    --medium-gray: #23232b;
    --gray: #364248;
    --purple: #795dc2;
    --white: #e1e2e5;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--dark-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: var(--dark-gray);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    color: var(--purple);
    font-size: 1.8rem;
    font-weight: bold;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
}

.logo a {
    color: var(--purple);
    text-decoration: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

nav ul,
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
    color: var(--purple);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--gray) 0%, var(--purple) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

#hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

#hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--purple);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #6a4fb3;
    transform: translateY(-2px);
}

.app-buttons {
    margin-top: 2rem;
}

/* Main content sections */
main section {
    padding: 3rem 0;
}

main section:nth-child(even) {
    background-color: var(--medium-gray);
}

h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);

}

h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);

}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--medium-gray);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    border: 1px solid var(--purple);
}

.feature:hover {
    transform: translateY(-5px);
}

/* Screenshots grid */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.screenshot {
    background: var(--gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    border: 2px solid var(--medium-gray);
}

.screenshot:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(121, 93, 194, 0.3);
    border-color: var(--purple);
}

.screenshot img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.screenshot:hover img {
    transform: scale(1.05);
}

/* FAQ Styles */
.faq-section {
    margin-bottom: 3rem;
    /* padding: 2rem;
    background: var(--medium-gray);
    border-radius: 10px;
    border: 1px solid var(--gray); */
}

.faq-section h3 {
    color: var(--purple);
    margin-bottom: 2rem;
    text-align: left;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--purple);
    padding-bottom: 0.5rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--dark-gray);
    border-radius: 8px;
    border-left: 4px solid var(--purple);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.faq-item ol,
.faq-item ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-item li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.contact-section {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--purple);
}

.contact-section h3 {
    color: var(--purple);
    margin-bottom: 1rem;
}

.contact-section p {
    margin-bottom: 0.5rem;
}

.feature h4 {
    color: var(--purple);
}

.feature p {
    color: whitesmoke;
}

/* Lists */
ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Privacy policy specific styles */
.container section {
    margin-bottom: 2rem;
}

.container h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--purple);
    padding-bottom: 0.5rem;
}

.desc {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 40px;
    padding-bottom: 0.5rem;
}

/* Links */
a {
    color: var(--purple);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--dark-gray);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--medium-gray);
}

footer a {
    color: var(--purple);
}

/* Responsive design */
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 75%;
        height: calc(100vh - 70px);
        background-color: var(--medium-gray);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
        gap: 2rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    #hero h2 {
        font-size: 2rem;
    }
    
    #hero h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
    
    #hero {
        padding: 2rem 0;
    }
    
    #hero h2 {
        font-size: 1.8rem;
    }
    
    #hero h1 {
        font-size: 1.8rem;
    }
}
