/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #F9F9F9;
    color: #333333;
    margin: 0;
}

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

/* Header */
header {
    background: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo .main-logo {
    height: 40px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FF7A00;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF7A00 0%, #FFC107 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #2C5F2D;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1E421E;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Download Section */
.download {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    align-items: center;
    background-color: #333333;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.store-button:hover {
    background-color: #1a1a1a;
}

.store-button.apple {
    background-color: #000000;
}

.store-button.google {
    background-color: #4285F4;
}

.store-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-text span {
    font-size: 0.9rem;
}

.store-text strong {
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: #333333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
}