body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #d9e7f1;
    color: #333;
    min-height: 100vh;
    position: relative;
    padding-bottom: 60px;
    box-sizing: border-box;
}

header {
    background-color: #3a4b5a;
    color: white;
    padding: 2em 1em; /* Increased padding to accommodate the new layout */
    text-align: center;
    position: relative;
}

.container {
    padding: 2em;
    max-width: 1200px;
    margin: auto;
}

.feature {
    margin: 1em 0;
}

footer {
    text-align: center;
    padding: 1em;
    background-color: #3a4b5a;
    color: white;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: #ffd700; /* This is a gold color for the hover effect */
    text-decoration: underline;
}

.cta-button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin: 10px;
}

.coming-soon-button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin: 10px;
    cursor: default;
}

h1 {
    font-size: 4em;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0;
    text-align: center;
}

h2, h3 {
    color: #2c3e50;
}

.subtitle {
    font-size: 1.5em;
    color: #d9e7f1;
    margin-top: 0.5em;
    margin-bottom: 1em;
    text-align: center;
}

.screenshot-section {
    position: relative;
    overflow: hidden;
    margin: 2em 0;
}

.screenshot-slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.screenshot-item {
    flex: 0 0 100%;
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 1em;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: #3a4b5a;
}

@media (min-width: 768px) {
    .screenshot-slider {
        flex-wrap: nowrap;
    }
    .screenshot-item {
        flex: 1;
    }
    .slider-dots {
        display: none;
    }
}

.screenshot-item img {
    width: 100%;
    max-width: 150px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.screenshot-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.8em;
    color: #3a4b5a;
}

.screenshot-item p {
    margin-top: 0;
    font-size: 1.1em;
    line-height: 1.4;
    max-width: 80%;
}

.title-section {
    text-align: center;
    margin-bottom: 1em;
}

.title-section h2 {
    font-size: 2.5em;
    margin-bottom: 0.2em;
    text-align: center;
}

.title-section .subtitle {
    font-size: 1.2em;
    color: #3a4b5a;
}

.testimonials {
    background-color: #3a4b5a;
    padding: 4em 0;
    margin-top: 2em;
    color: #d9e7f1;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

.testimonials h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 1em;
    font-size: 2.5em;
}

.testimonial-item {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.testimonial-item p {
    font-style: italic;
    font-size: 1.5em;
    line-height: 1.6;
    margin-bottom: 1em;
}

.testimonial-item .author {
    font-weight: bold;
    color: #ffffff;
    font-size: 1.2em;
}

.testimonial-container::-webkit-scrollbar {
    width: 8px;
}

.testimonial-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.testimonial-container::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.features-detail {
    padding: 4em 0;
    background-color: #d9e7f1;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 4em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-image {
    width: 100%;
    max-width: 300px;
    margin-top: 2em;
}

.feature-text {
    text-align: center;
    max-width: 600px;
    margin-bottom: 1em;
}

@media (min-width: 768px) {
    .feature-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        max-width: 1000px;
    }

    .feature-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .feature-image {
        width: 40%;
        margin-top: 0;
    }

    .feature-text {
        width: 55%;
        text-align: left;
        margin-bottom: 0;
    }

    .feature-item:nth-child(even) .feature-text {
        text-align: right;
    }
}

.feature-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.feature-text h3 {
    font-size: 2em;
    margin-bottom: 0.5em;
    color: #3a4b5a;
}

.feature-text p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
}

.coming-soon {
    font-size: 1.2em;
    color: #ffffff;
    background-color: #28a745;
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-block;
}

.email-signup {
    margin-top: 1.5em;
}

.email-signup input[type="email"] {
    padding: 10px;
    width: 250px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1em;
}

.email-signup button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    font-size: 1em;
    cursor: pointer;
}

.email-signup button:hover {
    background-color: #0056b3;
}

.coming-soon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1em;
    margin-bottom: 1em;
}

.zima-icon {
    width: 40px;  /* Adjust size as needed */
    height: auto;
    margin-right: 15px;  /* Space between icon and button */
}

.coming-soon {
    font-size: 1.2em;
    color: #ffffff;
    background-color: #28a745;
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-block;
}

/* Remove or comment out the previous .zima-icon styles if they exist elsewhere in your CSS */