/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, #4caf50, #2196f3);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

header .btn {
    display: inline-block;
    background: #fff;
    color: #2196f3;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

header .btn:hover {
    background: #ddd;
}

/* Mission Section */
#mission {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
}

#mission h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#mission p {
    font-size: 1.1rem;
    color: #555;
}

/* Service Section */
#service {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
}

#service h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#service p {
    font-size: 1.1rem;
    color: #555;
}

/* Apps Section */
#apps {
    background: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

#apps h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.app-item {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.app-item h3 {
    margin-bottom: 10px;
    color: #4caf50;
}

.app-item p {
    color: #555;
    margin-bottom: 15px;
}

.app-item .btn {
    display: inline-block;
    background: #4caf50;
    color: #fff;
    padding: 10px 15px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.app-item .btn:hover {
    background: #45a049;
}

/* Future Section */
#future {
    background: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

#future h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#future p {
    font-size: 1.1rem;
    color: #555;
}

/* Footer Styles */
footer {
    background: #2196f3;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer nav {
    margin: 10px 0;
}

footer nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
}

footer nav a:hover {
    text-decoration: underline;
}

