/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Heading */
h1 {
    color: #0056b3;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}
/* Ensure Main Content Fills the Viewport */
main {
    margin: 0; /* Remove any default margin */
    padding: 10px; /* Remove any default padding */
    display: flex;
    align-items: center; /* Vertically center the content */
    justify-content: center; /* Horizontally center the content */
}
/* Feature Cards */
.feature-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensures equal height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card h3 {
    color: #0056b3;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.feature-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Hover Effects */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-card {
        padding: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}
