body {
    font-family: sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #904a43;
    background-color: #f4f4f4;
}

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

header {
    background: #ffdad6;
    color: #904a43;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #73332d 3px solid;
}

header h1 {
    text-align: center;
    margin: 0;
    font-size: 2.5em;
}

header p {
    text-align: center;
    font-size: 1.1em;
}

#hero {
    min-height: 400px;
    background: url('images/pexels-martabranco-32236830.jpg') no-repeat center center/cover;
    color: #73332d;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    color: #ffffff;
    background: #73332d;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #904a43;
}

section {
    padding: 20px 0;
}

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

#features .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

#features .feature-item img {
    width: 80px; /* Adjust as needed */
    height: 80px; /* Adjust as needed */
    margin-bottom: 15px;
}

#features .feature-item h3 {
    margin-bottom: 10px;
}

#screenshots .screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

#screenshots .screenshot-item img {
    height: 400px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

#screenshots .screenshot-item p {
    text-align: left;
    font-style: italic;
    color: #904a43;
    margin-top: 5px;
}

#download {
    background: #ffdad6;
    text-align: center;
}

#download .store-buttons img {
    height: 60px; /* Adjust as needed */
    margin: 10px;
}

footer {
    color: #000000;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer a {
    color: #000000;
    text-decoration: none;
}

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

/* Responsive adjustments */
@media(max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    #hero h2 {
        font-size: 2.5em;
    }
    .container {
        width: 90%;
    }
}
