/* styles.css */
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header */
header {
    background-color: #007bff;
    color: #fff;
    padding: 10px 0;
}

header .logo h1 {
    margin: 0;
    font-size: 24px;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

header nav ul li {
    margin-left: 20px;
}

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

/* Hero Section */
.hero {
    background-color: #0056b3;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.hero .btn {
    background-color: #fff;
    color: #007bff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Features Section */
.features {
    padding: 50px 0;
    background-color: #fff;
}

.features .container {
    display: flex;
    justify-content: space-between;
}

.features .feature-item {
    text-align: center;
    width: 30%;
}

.features .feature-item i {
    font-size: 48px;
    color: #007bff;
    margin-bottom: 20px;
}

.features .feature-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.features .feature-item p {
    font-size: 16px;
    color: #666;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
}

footer ul li {
    margin: 0 10px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features .container {
        flex-direction: column;
        align-items: center;
    }

    .features .feature-item {
        width: 80%;
        margin-bottom: 30px;
    }

    header nav ul {
        justify-content: center;
    }

    header .logo h1 {
        text-align: center;
    }
}