body {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

header {
    background-color: #092439;
    color: #fff;
    padding-top: 20px;
    min-height: 70px;
    border-bottom: #F87C27 3px solid;
    text-align: center;
}

header h1 {
    color: #fff;
    margin: 0;
    padding-bottom: 10px;
}

header .app-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 10px;
}

#hero {
    background: FLORALWHITE;
    color: #3c3737;
    text-align: center;
    padding: 50px 0;
}

#hero .catchphrase {
    font-size: 2em;
    margin-bottom: 20px;
    color: #F87C27;
    font-weight: bold;
}

#hero .hero-app-icon {
    width: 150px;
    height: 150px;
    border-radius: 25%;
    margin-top: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

section {
    padding: 40px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

section h2 {
    text-align: center;
    color: #092439;
    margin-bottom: 30px;
    font-size: 2em;
}

#features ul {
    list-style: none;
    padding: 0;
}

#features ul li {
    background: #f9f9f9;
    margin-bottom: 15px;
    padding: 20px;
    border-left: #F87C27 5px solid;
    border-radius: 5px;
}

#features ul li h3 {
    color: #092439;
    margin-top: 0;
}

#download .download-buttons {
    text-align: center;
    margin-top: 30px;
}

.button {
    display: inline-block;
    background: #F87C27;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #e66a1a;
}

.button.app-store {
    background-color: #007AFF;
}

.button.app-store:hover {
    background-color: #0056b3;
}

.button.google-play {
    background-color: #3DDC84;
}

.button.google-play:hover {
    background-color: #2ca06a;
}

.qr-code-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #666;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #092439;
    color: #fff;
    margin-top: 20px;
}

#app-screens .screen-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

#app-screens .screen-gallery img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#app-screens .screen-gallery img:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .button {
        display: block;
        margin: 10px auto;
    }
}