html{
    overflow-x:hidden;
    height: 100%;
  }

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    position: relative; 
    height:100%;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

header nav ul {
    list-style-type: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    bottom: 0;
}


main {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 20px;
}

h1, h2, h3 {
    color: #333;
}
h2 {
    background-color: #333;
    color: white;
    padding: 10px;
    cursor: pointer;
    margin: 0;
}
.content {
    padding: 15px;
    background-color: #fff;
    display: none;
    border: 1px solid #ddd;
    margin-top: 10px;
}
.active {
    display: block;
}
.playstore-btn {
    display: inline-flex;
    align-items: center;
    background-color: #34b7f1;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.playstore-btn:hover {
    background-color: #2a9fd6;
}

.playstore-btn img {
    width: 20px;
    margin-right: 10px;
}

.image-container img {
    border-radius: 15px; /* Adjust the value as needed */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adjust the values as needed */
}

.rounded-image {
    border-radius: 15px; /* Adjust the radius to change roundness */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    transition: transform 0.3s ease; /* Smooth transition on hover */
}

.rounded-image:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.image-container img {
    border-radius: 15px; /* Adjust the value as needed */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adjust the values as needed */
}

.center-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Optional: Use this if you want to stack items vertically */
}

.side-by-side {
    display: flex;
    justify-content: space-between; /* Optional: Adjusts the space between the divs */
}

.side-by-side > div {
    flex: 1; /* Optional: Makes the divs take equal space */
    margin: 0 10px; /* Optional: Adds space between the divs */
}

.boxcontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
.boxcontent {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 600px;
}
.box {
    background: #f4f4f4;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
}
@media (max-width: 600px) {
    .boxcontent {
        grid-template-columns: 1fr;
    }
}