/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Main Content Styles */
.main-content {
    background-color: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.main-content h2 {
    color: #007bff;
    margin-bottom: 1rem;
}

.main-content p {
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.feature {
    flex-basis: 30%;
    background-color: white;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.feature h3 {
    color: #007bff;
    margin-bottom: 0.5rem;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #343a40;
    color: white;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
    }
    
    .feature {
        flex-basis: 100%;
    }
}