/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #C6F6FF;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Top Navigation Bar */
.navbar {
    background-color: #00AECF;
    padding: 15px 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 16px;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #FFD700;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.app-header {
    text-align: center;
    margin-bottom: 60px;
}

.app-header img {
    width: 150px;
    height: 150px;
}

.app-header h1 {
    font-size: 48px;
    margin-top: 20px;
    color: #333;
}

/* Feature Sections */
.feature {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.feature:nth-child(even) {
    flex-direction: row-reverse;
}

.feature img {
    width: 50%;
    max-width: 500px;
    border-radius: 10px;
}

.feature-text {
    width: 50%;
    padding: 20px;
}

.feature-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #00AECF;
}

.feature-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

/* Footer */
.footer {
    background-color: #00AECF;
    color: white;
    text-align: center;
    padding: 20px 0;
    /* For fixed footer */
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature {
        flex-direction: column;
    }

    .feature:nth-child(even) {
        flex-direction: column;
    }

    .feature img, .feature-text {
        width: 100%;
    }

    .navbar {
        justify-content: center;
    }

    .navbar a {
        margin: 0 10px;
    }

    .footer {
        position: static;
    }
}