body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background: #333;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: left;
}

.logo {
    height: 60px;
    width: auto;
    margin-right: 15px;
}

.title-box {
    background: white;
    color: #333;
    text-align: center;
    padding: 15px;
    margin: 15px auto;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 24px;
    margin: 0;
    font-weight: bold;
}

main {
    padding: 20px;
}

.info, .apps, .pricing, .gallery, .contact {
    background: white;
    padding: 15px;
    margin: 15px auto;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.gallery .images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

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

.contact p {
    font-size: 16px;
}

.contact a {
    color: #d60000;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

footer {
    background: #333;
    color: white;
    padding: 10px;
    margin-top: 20px;
    text-align: center;
}
