/* Basic Reset & Defaults */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Container */
.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.language-selector label {
    margin-right: 0.5rem;
}

#lang-select {
    padding: 0.3rem;
    border-radius: 4px;
}

/* Main Content Sections */
main {
    padding-top: 2rem; /* Adjust if header height changes */
}

section {
    padding: 40px 20px;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Hero Section */
#hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(to right, #6dd5ed, #2193b0); /* Example gradient */
    color: #fff;
    text-align: left;
    border-radius: 0; /* Full width */
     box-shadow: none;
}

#hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

#hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.hero-content {
    flex-basis: 55%;
}

.hero-image {
    flex-basis: 40%;
    text-align: center;
}

/* Image Placeholder Styling */
.image-placeholder, .feature-icon-placeholder, .icon-placeholder {
    background-color: #e0e0e0;
    border: 1px dashed #aaa;
    padding: 40px 20px;
    text-align: center;
    color: #666;
    font-style: italic;
    display: inline-block; /* For small icons */
}
.hero-image .image-placeholder {
    width: 100%; /* Make hero placeholder take available space */
    min-height: 250px; /* Ensure some height */
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon-placeholder {
    width: 60px;
    height: 60px;
    padding: 10px;
    border-radius: 50%;
    margin-bottom: 1rem;
    display: flex; /* Center text vertically */
    align-items: center;
    justify-content: center;
}
.icon-placeholder {
    padding: 2px 5px;
    font-size: 0.8em;
    margin-right: 5px;
    border-radius: 3px;
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 5px;
    border: none;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.cta-buttons, .download-buttons {
    text-align: center; /* Center buttons in hero/download */
    margin-top: 1.5rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 1.5rem;
    text-align: center;
}

.feature-item h3 {
    margin-bottom: 0.5rem;
    color: #0056b3;
}

/* Download Section */
#download h2 {
    color: #007bff;
}

/* Support Section */
#support {
    text-align: center;
}
#support p {
    margin-bottom: 0.5rem;
}
.donate-link {
    color: #007bff;
    text-decoration: underline;
    font-weight: bold;
}
.donate-link:hover {
    color: #0056b3;
}


/* Footer */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    background-color: #333;
    color: #ccc;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-content, .hero-image {
        flex-basis: 100%;
    }
    nav {
        flex-direction: column;
        gap: 0.5rem;
    }
}