/* Set body font and background color */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

/* Container class for centralizing content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
header {
    background-color: #333;
    color: #fff;
}

header h1 {
    margin: 10px 0;
}

header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline-block;
    margin-right: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Feature section styles */
#features {
    padding: 80px 0;
}

.feature {
    text-align: center;
    margin-bottom: 40px;
}

.feature img {
    max-width: 100%;
    height: auto;
}

/* Download section styles */
#download {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.download-links {
    text-align: center;
    margin-top: 40px;
}

.download-links a {
    margin: 0 10px;
}

/* Contact section styles */
#contact {
    padding: 80px 0;
}

#contact form input,
#contact form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
}

#contact form textarea {
    height: 150px;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Button styles */
.btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}


/* Add this to your styles.css file */
.store-icon {
    width: 150px; /* Adjust size as needed */
    height: 50px; /* Adjust size as needed */
}

.profile-banner {
    width: 100%;
    height: 200px; /* Adjust height as needed */
    background-color: #d8d8d8; /* Default background color */
    background-image: url('banner.jpg'); /* Banner image */
    background-size: cover;
    background-position: center;
}

.profile-picture {
    width: 150px; /* Adjust size as needed */
    height: 150px; /* Adjust size as needed */
    border-radius: 50%; /* Make it circular */
    overflow: hidden;
    margin: -75px auto 20px; /* Adjust vertical spacing */
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}