        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
        header {
            color: white;
            padding: 20px 0;
            text-align: center;
        }
        header h1 {
            margin: 0;
            font-size: 2.8em;
        }
        header p {
            margin: 5px 0 0;
            font-size: 1.2em;
        }
.values {
    background-color: #f9f9f9; /* Softer background for better contrast */
    padding: 30px;
    margin: 20px auto;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    font-family: Arial, sans-serif;
    text-align: center;
}

.values h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.values ul {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to the next row */
    justify-content: center; /* Centers items in the row */
    gap: 20px; /* Spacing between items */
    padding: 0;
    margin: 0;
    list-style-type: none; /* Remove bullet points */
}

.values li {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 0;
    font-size: 1.1em;
    color: #555;
    width: calc(45% - 20px); /* Adjust width for even alignment in rows */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left; /* Align text to the left for better readability */
    display: flex; /* Use flex to align icon and text horizontally */
    align-items: center; /* Vertically center icon and text */
    transition: transform 0.2s, box-shadow 0.2s;
}

.values li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.values li::before {
    font-size: 1.5em; /* Slightly larger icon size */
    margin-right: 15px; /* Space between icon and text */
}

.values li img {
    margin-right: 10px; /* Space between emoji/icon and text */
}

@media (max-width: 600px) {
    .values li {
        width: 100%; /* Full width for smaller screens */
    }
}

.features {
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 1100px;
}

.features h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.5;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.features li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.features .feature-icon {
    font-size: 2em;
    margin-right: 20px;
}

.features li div {
    flex-grow: 1;
}

.features li strong {
    color: #00796b;
    font-weight: bold;
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .features li {
        flex-direction: column;
        text-align: center;
    }

    .features li .feature-icon {
        margin: 0 0 10px 0;
    }
}

        .apps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            padding: 30px;
        }
        .app-card {
            background-color: #ffffff;
            width: 270px;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .app-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        .app-card img {
            width: 100px;
            height: 100px;
            margin-bottom: 10px;
        }
        .app-card h3 {
            margin: 10px 0;
            font-size: 1.4em;
        }
        .app-card p {
            font-size: 1em;
            color: #555;
            margin: 10px 0;
        }
        .app-card a {
            text-decoration: none;
            color: #00796b;
            font-weight: bold;
            transition: color 0.3s;
        }
        .app-card a:hover {
            color: #0056b3;
        }
		footer {
			color: white;
			text-align: center;
			padding: 15px 0;
			position: relative;
			bottom: 0;
			width: 100%;
			font-size: 0.9em;
		}

		footer p {
			margin: 5px 0; /* Reduces spacing between lines */
			line-height: 1.6; /* Improves readability */
		}

		footer a {
			color: white; /* Bright yellow for contrast and visibility */
			text-decoration: none;
			font-weight: bold;
			transition: color 0.3s;
		}

		footer a:hover {
			color: #ffeb3b; /* Lighter yellow for hover effect */
		}

		footer .footer-links {
			margin-top: 10px;
			display: flex;
			justify-content: center;
			gap: 15px; /* Adds spacing between the links */
			flex-wrap: wrap; /* Allows links to wrap on smaller screens */
		}
        .screenshots-gallery {
            display: flex;
            justify-content: center;
            gap: 20px;
            padding: 40px 0;
            margin: 0 auto;
            max-width: 1200px;
            flex-wrap: wrap;  /* Allows wrapping on smaller screens */
            justify-content: space-evenly;  /* Evenly spaced items */
        }
        
        .screenshot-item {
            position: relative;
            width: 280px;  /* Set the width of each screenshot */
            height: 420px;  /* Set the height for portrait images */
            overflow: hidden;  /* Prevents image overflow */
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            transform: scale(0.9);  /* Initial scaling */
            animation: slideUp 0.6s ease-in-out forwards;  /* Animation on load */
            opacity: 0;
            transition: transform 0.3s ease-in-out;
        }
        
        .screenshot-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;  /* Ensure the image fits without being cropped */
            border-radius: 10px;
        }
        
        .screenshot-item:hover {
            transform: scale(1.1);  /* Slight zoom effect on hover */
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Animation to slide images into view */
        @keyframes slideUp {
            0% {
                transform: translateY(30px);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        /* Add a delay to each screenshot for a staggered animation */
        .screenshot-item:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .screenshot-item:nth-child(2) {
            animation-delay: 0.3s;
        }
        
        .screenshot-item:nth-child(3) {
            animation-delay: 0.5s;
        }
        
        /* Responsive layout for smaller screens */
        @media (max-width: 768px) {
            .screenshots-gallery {
                flex-direction: column;
                align-items: center;
            }
        
            .screenshot-item {
                width: 240px;  /* Smaller size for mobile */
                height: 360px;
            }
        }
        
        

