
/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; /* Light gray background */
    color: #343a40; /* Dark gray text */
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0; /* Reduced padding */
}

/* Header/Hero Section */
.hero-section {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Blue gradient */
    color: #fff;
    text-align: center;
    padding: 25px 0; /* Further reduced padding */
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hero-section .app-icon {
    width: 80px; /* Slightly smaller icon */
    height: 80px; /* Slightly smaller icon */
    margin-bottom: 8px; /* Reduced margin */
    border-radius: 25%; /* Slightly rounded icon */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-section h1 {
    font-size: 2.5em; /* Slightly smaller font */
    margin-bottom: 4px; /* Reduced margin */
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-section p {
    font-size: 1em; /* Slightly smaller font */
    margin-bottom: 15px; /* Reduced margin */
    font-weight: 300;
    opacity: 0.9;
}

.download-buttons .button {
    display: inline-block;
    padding: 8px 20px; /* Reduced padding */
    margin: 5px; /* Reduced margin */
    border-radius: 30px; /* Pill-shaped buttons */
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.85em; /* Slightly smaller font */
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.download-buttons .primary {
    background-color: #28a745; /* Green for primary action */
    border: 2px solid #28a745;
}

.download-buttons .primary:hover {
    background-color: #218838;
    border-color: #218838;
    transform: translateY(-3px);
}

/* Features Section */
.features-section {
    padding: 25px 0; /* Further reduced padding */
    background-color: #fff;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    margin-top: -10px; /* Reduced overlap */
    position: relative;
    z-index: 1;
}

.features-section h2 {
    font-size: 2.2em; /* Slightly smaller font */
    margin-bottom: 20px; /* Reduced margin */
    color: #007bff;
    font-weight: 700;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjusted min width */
    gap: 15px; /* Reduced gap */
}

.feature-item {
    background-color: #fefefe;
    padding: 18px; /* Reduced padding */
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px); /* Reduced lift */
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.09); /* Reduced shadow */
}

.feature-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 8px; /* Reduced margin */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    font-size: 1.2em; /* Slightly smaller font */
    margin-bottom: 8px; /* Reduced margin */
    color: #007bff;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.85em; /* Slightly smaller font */
    color: #6c757d;
}

/* Why Us Section */
.why-us-section {
    padding: 25px 0; /* Further reduced padding */
    background-color: #e9f7fe; /* Lighter bluish */
    color: #0056b3; /* Darker blue text */
    text-align: center;
}

.why-us-section h2 {
    font-size: 2.2em; /* Slightly smaller font */
    margin-bottom: 20px; /* Reduced margin */
    font-weight: 700;
}

.why-us-section ul {
    list-style: none;
    padding: 0;
    max-width: 550px; /* Slightly narrower */
    margin: 0 auto 15px auto; /* Reduced margin */
    display: grid;
    grid-template-columns: 1fr; /* Single column for list items */
    gap: 10px; /* Reduced gap */
}

.why-us-section li {
    background-color: #fdfdfd; /* Slightly off-white for depth */
    margin-bottom: 0;
    padding: 15px; /* Reduced padding */
    border-radius: 10px; /* Slightly less rounded */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); /* Reduced shadow */
    text-align: left;
    color: #343a40;
    font-size: 1em; /* Slightly smaller font */
    font-weight: 400;
    border-left: 3px solid #007bff; /* Slightly thinner accent border */
    transition: all 0.3s ease; /* Smoother transition */
}

.why-us-section li:hover {
    transform: translateY(-3px); /* Reduced lift */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08); /* Reduced shadow on hover */
    border-left-color: #0056b3; /* Darker blue on hover */
}

/* Get Started Section */
.get-started-section {
    padding: 25px 0; /* Further reduced padding */
    background-color: #fff;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.get-started-section h2 {
    font-size: 2.2em; /* Slightly smaller font */
    margin-bottom: 12px; /* Reduced margin */
    color: #007bff;
    font-weight: 700;
}

.get-started-section p {
    font-size: 1em; /* Slightly smaller font */
    margin-bottom: 20px; /* Reduced margin */
    color: #6c757d;
}

/* Footer */
footer {
    background-color: #343a40; /* Darker footer */
    color: #f8f9fa;
    text-align: center;
    padding: 10px 0; /* Reduced padding */
    font-size: 0.75em; /* Slightly smaller font */
}

footer p {
    margin: 0;
}

footer a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #6c757d;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2em;
    }

    .hero-section p {
        font-size: 0.85em;
    }

    .download-buttons .button {
        padding: 6px 15px;
        font-size: 0.75em;
    }

    .features-section h2,
    .why-us-section h2,
    .get-started-section h2 {
        font-size: 1.8em;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-item h3 {
        font-size: 1.1em;
    }

    .why-us-section li {
        padding: 12px;
        font-size: 0.85em;
    }

    .get-started-section p {
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.5em;
    }

    .hero-section p {
        font-size: 0.75em;
    }

    .download-buttons .button {
        display: block;
        width: 90%;
        margin: 5px auto;
    }

    .features-section h2,
    .why-us-section h2,
    .get-started-section h2 {
        font-size: 1.4em;
    }
}
