/* General styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f0f0f0;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #007bff;
    color: white;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

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

header nav ul li a:hover {
    text-decoration: underline;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #e9ecef;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero button:hover {
    background-color: #0056b3;
}

/* Features section */
.features {
    padding: 40px 20px;
    background-color: white;
    text-align: center;
}

.features h2 {
    margin-bottom: 20px;
}

.feature-list {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.feature-item {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 30%;
    background-color: #f9f9f9;
}

.feature-item h3 {
    margin-bottom: 10px;
}

/* About section */
.about {
    padding: 40px 20px;
    text-align: center;
    background-color: #f7f7f7;
}

.about h2 {
    margin-bottom: 20px;
}

/* Contact section */
.contact {
    padding: 40px 20px;
    text-align: center;
    background-color: white;
}

.contact h2 {
    margin-bottom: 20px;
}

/* flag part 3: _s0urces} */
footer {
    padding: 20px;
    text-align: center;
    background-color: #007bff;
    color: white;
}
