/* General Reset */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

/* Header Section */
header {
    background: #38CBF7;
    color: white;
    padding: 50px 0;
    text-align: center;
}

header .logo {
    width: 150px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta-button {
    background: #38CBF7;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Description Section */
.description {
    padding: 40px 0;
    background: #f9f9f9;
}

/* Features Section */
.features {
    background: white;
    padding: 50px 0;
}

.features h2 {
    margin-bottom: 30px;
    color: #38CBF7;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background: #f1f1f1;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

/* Screenshots Section */
.screenshots {
    padding: 50px 0;
    background: #f9f9f9;
}
.screenshots h2 {
    margin-bottom: 30px;
    color: #38CBF7;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
}

.screenshot-top {
    width: 100%;
    max-width: 400px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.screenshot-bottom {
    grid-column: span 2; /* Spans both columns */
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Contact Section */
.contact {
    padding: 40px 0;
    background: #ffffff;
}

.contact a {
    color: #38CBF7;
    text-decoration: none;
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 10px 0;
    text-align: center;
}
