/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9fb;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #5e72e4;
    transition: all 0.3s ease;
}

a:hover {
    color: #3755db;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.primary-btn {
    background-color: #5e72e4;
    color: white;
    box-shadow: 0 4px 6px rgba(94, 114, 228, 0.2);
}

.primary-btn:hover {
    background-color: #3755db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(94, 114, 228, 0.3);
}

.secondary-btn {
    background-color: white;
    color: #5e72e4;
    border: 2px solid #5e72e4;
}

.secondary-btn:hover {
    background-color: #f5f6ff;
    transform: translateY(-2px);
}

/* Header styles */
header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #5e72e4;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #666;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: #5e72e4;
}

.download-btn {
    display: flex;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8edff 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 80%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(94, 114, 228, 0.15);
}

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

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

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

.feature-card {
    background-color: #f9f9fb;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.feature-card p {
    color: #666;
}

/* App Screens Section */
.app-screens {
    padding: 80px 0;
    background-color: #f9f9fb;
}

.app-screens h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.screens-carousel {
    display: flex;
    justify-content: center;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
}

.screen {
    text-align: center;
}

.screen img {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-height: 500px;
    transition: all 0.3s ease;
}

.screen img:hover {
    transform: scale(1.05);
}

.screen p {
    margin-top: 15px;
    font-weight: 500;
    color: #666;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: linear-gradient(135deg, #5e72e4 0%, #825ee4 100%);
    color: white;
    text-align: center;
}

.download h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.download p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.store-badge {
    display: flex;
    justify-content: center;
}

.store-badge img {
    height: 60px;
}

.download-soon {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: 10px;
    display: inline-block;
    margin: 0 auto;
}

.download-soon p {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

/* Footer */
footer {
    background-color: #2d3748;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Support page styles */
.support-hero, .privacy-hero, .terms-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8edff 100%);
    text-align: center;
}

.support-hero h1, .privacy-hero h1, .terms-hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.support-content, .privacy-content, .terms-content {
    padding: 60px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.support-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.support-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.email-contact {
    margin-top: 15px;
}

.email-contact a {
    font-weight: 600;
}

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

.faq h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.faq-item p {
    color: #666;
}

/* Privacy Policy styles */
.policy-section {
    max-width: 800px;
    margin: 0 auto 40px;
}

.policy-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.policy-section p, .policy-section ul {
    margin-bottom: 15px;
}

.policy-section ul {
    padding-left: 20px;
    list-style-type: disc;
}

.policy-section li {
    margin-bottom: 8px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 40px;
    }
    
    .screens-carousel {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-links ul {
        justify-content: center;
    }
    
    nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        margin: 15px 0;
    }
} 