/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header Styles */
header {
    background: #7851A9;
    color: white;
    padding: 10px 0;
}

header .logo {
    height: 50px;
    vertical-align: middle;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #B18507, #FED27A);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.hero h1 {
    margin: 0;
    font-size: 48px;
}

.hero p {
    font-size: 24px;
}

.hero .cta-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.hero .btn {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 20px;
    box-sizing: border-box;
}

.hero .btn img {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    animation: ballBounce 3s ease-out infinite;
    animation-delay: 2s;
}

@keyframes ballBounce {
    0%, 85% {
        transform: translateY(0);
    }
    5% {
        transform: translateY(-8px);
    }
    10% {
        transform: translateY(-6px);
    }
    15% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-4px);
    }
    25% {
        transform: translateY(0);
    }
}

.hero .btn-primary {
    background: #7851A9;
    color: white;
}

.hero .btn-secondary {
    background: #C0C0C0;
    color: #333;
}

/* Intro Section */
.intro {
    background: #f9f9f9;
    padding: 40px 0;
    text-align: center;
}

.intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* Features Section */
.features {
    padding: 40px 0;
}

.features h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.features .feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.features .feature-item {
    width: 30%;
    text-align: center;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.features .feature-item img {
    height: 50px;
}

/* Container for the policy content */
.privacy-policy-container {
    max-width: 800px;
    width: 90%; /* Allows for some flexibility on smaller screens */
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Screenshots Section */
.screenshots {
    background: #f9f9f9;
    padding: 40px 0;
    text-align: center;
}

.screenshots h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.screenshots .screenshot-gallery {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    /* background-color:red; */
}

.screenshots .screenshot-gallery a {
    width: 50%; /* Adjust as needed, fits 2 columns */
    /* background-color:blue; */
}

.screenshots .screenshot-gallery img {
    width: 90%;
    margin-bottom: 20px;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
    box-shadow: 4px 6px 8px 1px rgba(0, 0, 0, .2);
    /* background-color:blue; */
}

/* Microsoft Store Link Section */
.store-link {
    text-align: center;
    padding: 20px 0;
}

.store-link .btn-store {
    background: #0078D7;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin-right: 20px;
}

footer ul li a {
    color: white;
    text-decoration: none;
}

footer .social-media {
    margin-top: 10px;
}

footer p {
    margin: 10px 0 0;
}
