/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

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

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

img.logo {
    width: 100px;
}

/* Hero Section */
.hero-section {
    background: url('images/hero-background-1.png') no-repeat center center/cover;
    text-align: center;
    color: black;
    padding: 60px 20px;
}

.hero-section h1 {
    font-size: 2.5em;
    margin: 0;
}

.hero-section p {
    font-size: 1.2em;
    margin: 0 0 30px;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.badge.android img {
    height: 50px;
    width: 160px;
}

.badge.ios img {
    height: 50px;
    width: 150px;
}

.device-mockups {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
}

.device-mockup img {
    width: 100%;
    max-width: 600px;
}

.device-mockup img.android {
    max-width: 341px;
    transform: rotate(22deg);
    margin-top: 28px;
}

/* Features Section */
.features {
    background: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.features h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.feature {
    margin-bottom: 30px;
}

.feature h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1em;
}

/* Testimonials Section */
.testimonials {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

blockquote {
    font-style: italic;
    color: #666;
    margin: 20px auto;
    max-width: 600px;
}

/* Contact Section */
.contact {
    background: #f0f0f0;
    padding: 40px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1em;
}

.contact a {
    color: #333;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer p {
    margin: 0;
}
