/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

a {
    color: #6941c6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.8rem;
    color: #333;
}

h3 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

/* Layout */
.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 220px;
    background-color: #1a1a1a;
    color: white;
    padding: 2rem 1rem;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.logo-icon {
    width: 35px;
    height: 35px;
    margin-right: 0.8rem;
}

.logo-text h2 {
    font-size: 1.1rem;
    line-height: 1.3;
    color: white;
    margin-bottom: 0;
}

.main-nav ul {
    list-style: none;
    margin-left: 0;
}

.main-nav li {
    margin-bottom: 0.8rem;
}

.main-nav a {
    color: #f0f0f0;
    display: block;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.main-nav a:hover {
    background-color: #333;
    text-decoration: none;
}

.main-nav li.active a {
    background-color: #6941c6;
    font-weight: bold;
}

/* Main Content */
.main-content {
    flex: 1;
    max-width: 100%;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background1: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero .subtitle {
    font-size: 1.3rem;
    font-style: italic;
}

/* Download Section */
.download-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background-color: white;
    border-bottom: 1px solid #eee;
}

.store-button img, .android-button img {
    height: 60px;
}

/* Features Section */
.features-section {
    padding: 2rem;
    text-align: center;
    background-color: white;
}

.app-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.feature-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}

.feature-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-weight: bold;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0;
}

/* Privacy, Support, Features Sections */
.privacy-section, .support-section, .features-comparison, .story-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-top: 1px solid #eee;
}

.features-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.features-column, .pro-features-column {
    flex: 1;
    min-width: 300px;
}

/* Footer */
.site-footer {
    background-color: #f5f5f5;
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid #ddd;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links span:not(:last-child)::after {
    content: "•";
    margin: 0 0.8rem;
    color: #aaa;
}

.footer-credits {
	font-size: 0.7em;
}
.footer-credits span:not(:last-child)::after {
    content: "|";
    margin: 0 0.8rem;
    color: #aaa;
}

/* Screenshots Page Styles */
.screenshots-gallery {
    padding: 2rem;
    background-color: white;
}

.screenshot-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.screenshot-card {
    width: 320px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.screenshot-text {
    padding: 1.5rem 1.5rem 0;
    text-align: center;
}

.screenshot-text h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.small-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.screenshot-image {
    padding: 1rem;
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.screenshot-image img {
    max-width: 120px;
    max-height: 200px;
}

.screenshot-info {
    text-align: center;
    padding: 0 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.screenshot-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.dots {
    display: flex;
    gap: 5px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
}

.dot.active {
    background-color: rgba(255, 255, 255, 0.8);
}

.app-screenshots {
    display: flex;
    gap: 1rem;
}

.app-screenshot {
    width: 300px;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.app-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

.app-screenshots-row {
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 1rem;
}

/* Color Classes */
.purple {
    background-color: #6941c6;
}

.maroon {
    background-color: #5b1349;
}

.red {
    background-color: #8b0000;
}

.orange {
    background-color: #f7931e;
}

/* FAQ Page Styles */
.faq-links {
    background-color: white;
    padding: 2rem;
    border-bottom: 1px solid #eee;
}

.faq-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    margin: 0;
}

.faq-links a {
    display: block;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 30px;
    background-color: #f8f8f8;
    transition: all 0.3s;
}

.faq-links a:hover {
    background-color: #6941c6;
    color: white;
    text-decoration: none;
}

.faq-content {
    padding: 2rem;
    background-color: white;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h2 {
    color: #6941c6;
    margin-bottom: 1rem;
}

.screenshot {
    margin: 1rem 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    max-width: 350px;
}

.screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 1rem;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    .main-nav ul {
        display: flex;
        gap: 1rem;
    }
    
    .main-nav li {
        margin-bottom: 0;
    }
    
    .features-comparison {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .features-section .feature-icons {
        gap: 1rem;
    }
    
    .feature-item {
        width: 100px;
    }
    
    .feature-item img {
        width: 60px;
        height: 60px;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .screenshot-card {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .main-nav ul {
        flex-direction: column;
    }
    
    .footer-links span:not(:last-child)::after,
    .footer-credits span:not(:last-child)::after {
        display: none;
    }
    
    .footer-links span,
    .footer-credits span {
        display: block;
        margin-bottom: 0.5rem;
    }
}