/* Reset some default styles */

body,
h1,
h2,
h3,
p,
ul,
li {
    margin: 0;
    padding: 0;
}

/* Set a base font size and style */

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

/* Improve text readability */

a,
p {
    color: #333;
}

/* Improve link style */

a {
    text-decoration: none;
}

/* Improve header layout and style */

header {
    background-color: #4CAF50;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    width: 100px;
    /* Adjust the size as needed */
}

/* Improve navigation menu style */

nav ul {
    list-style-type: none;
    display: flex;
}

/* Improve banner image styling */

.bg img {
    width: 100%;
    height: auto;
}

/* Add padding to sections */

section {
    padding: 20px;
}

/* Improve blockquote style */

blockquote {
    background-color: #f9f9f9;
    border-left: 4px solid #4CAF50;
    margin: 10px 0;
    padding: 10px 20px;
}

blockquote h2 {
    color: #4CAF50;
}

/* Style the footer */

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

/* Improve social media icons */

.footer-right a {
    color: #fff;
    font-size: 20px;
    width: 17%;
}

/* Style links in the footer */

.links {
    margin-top: 10px;
}

.links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

/* Add hover effect for links */

.links a:hover {
    text-decoration: underline;
}

/* Improve the FAQ section */

.blockquote-logo img {
    max-width: 100%;
    height: auto;
}

.RummyAllApps-Ordered-List {
    list-style-type: disc;
    margin-left: 20px;
}

/* Responsive styles for smaller screens */

header {
    flex-direction: column;
    align-items: flex-start;
}

.header-logo img {
    margin-bottom: 10px;
}

.menu {
    display: block;
    margin-top: auto;
    margin-bottom: auto;
}

.justify-content-between {
    justify-content: space-between;
    width: 100%;
}