/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    max-width: 1200px; /* Adjust for desired max width */
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.menu {
    background-color: #333;
    padding: 10px 0;
}

.menu nav ul {
    list-style: none;
    text-align: center;
}

.menu nav ul li {
    display: inline;
    margin: 0 15px;
}

.menu nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Title Section */
.title {
    text-align: center;
    padding: 30px 15px;
    background-color: #fff;
    border-bottom: 2px solid #eee;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.title h1 {
    font-size: 2.5em;
    color: #222;
    margin-bottom: 10px;
}

.title p {
    font-size: 1.1em;
    color: #555;
}

/* Section Styling */
section {
    padding: 30px 20px;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    max-width: 900px; /* Narrower content for better readability */
}

/* Features and How to Use */
.features, .how-to-use {
    margin-bottom: 30px;
}

.features h2, .how-to-use h2, .faq h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #444;
}

.features ul, .how-to-use ol {
    margin-left: 20px;
    list-style: none;
}

.features ul li, .how-to-use ol li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.features ul li::before, .how-to-use ol li::before {
    content: "\2022"; /* Bullet */
    color: #4CAF50;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Supported Countries */
.countries {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    text-align: center;
}

.country {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f8f8f8;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.country:hover {
    transform: translateY(-5px);
}

.country img {
    width: 40px;
    margin-bottom: 10px;
}

.country h3 {
    font-size: 1em;
    color: #333;
}

/* Why Choose Our Service Section */
.additional-content {
    text-align: center;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

.additional-content h3 {
    margin-bottom: 15px;
    color: #4CAF50;
    font-size: 1.8em;
}

/* FAQ */
.faq h4 {
    font-weight: bold;
    margin-top: 15px;
    font-size: 1.2em;
}

.faq p {
    margin-top: 5px;
    color: #555;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px 0;
}

footer a {
    color: #4CAF50;
    text-decoration: none;
}

/* Footer Ad */
.footer-ad {
    text-align: center;
    padding: 10px;
    background-color: #f4f4f4;
}
