/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo-title {
    display: flex;
    align-items: center;
}

.header .logo {
    height: 60px;
    margin-right: 15px;
}

.header h1 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.header .navigation {
    display: flex;
    align-items: center;
}

.header .navigation .btn {
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    background-color: #fbb034;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.header .navigation .btn:hover {
    background-color: #e89d1f;
}

/* Hero Section Styles */
.hero {
    display: flex;
    align-items: center;
    padding: 50px 0;
    background-color: #f7f7f7;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
    min-width: 300px;
}

.hero-content h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.hero-content .contact-info {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

.hero-content .playstore-img {
    width: 150px;
    height: auto;
}

.hero-image {
    flex: 1;
    text-align: center;
    min-width: 300px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Features Section */
.features {
    background-color: #fff;
    padding: 60px 0;
}

.features h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
}

.features-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.feature-text {
    flex: 1;
    text-align: left;
    min-width: 300px;
}

.feature-image {
    flex: 1;
    text-align: center;
    min-width: 300px;
}

.feature-item {
    margin-bottom: 30px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    font-size: 16px;
    color: #666;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: #fbb034;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 15px;
}

/* Footer Styles */
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer a {
    color: #fbb034;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .logo-title h1 {
        font-size: 20px;
    }

    .header .navigation .btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .feature-item h3 {
        font-size: 18px;
    }

    .feature-item p {
        font-size: 14px;
    }

    .features-layout {
        flex-direction: column;
    }

    .feature-image {
        order: -1; /* Move the image before the text */
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-content {
        order: 1; /* Show the text below the image */
    }

    .hero-image {
        order: 0; /* Show the image second */
    }
}

@media (max-width: 480px) {
    .header .logo-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .header .logo {
        height: 50px;
        margin-right: 10px;
    }

    .header .navigation {
        flex-direction: column;
        align-items: flex-start;
    }

    .header .navigation .btn {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .hero-content {
        padding-right: 0;
    }

    .features-layout {
        flex-direction: column;
    }

    .hero-image,
    .feature-image {
        margin-bottom: 20px;
    }
}