/* Reset default styles and apply font family */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Apply background gradient to the body */
body {
    background: linear-gradient(to bottom, #90c6f2, #ffffff); /* Adjust colors as per your preference */
}

/* Header styles */
.header {
    background-color: #007bff; /* Blue header background color */
    color: white;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.header img {
    max-width: 100px;
    height: auto;
    vertical-align: middle;
}

.header h1 {
    font-size: 24px;
    margin: 5px 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header p {
    font-size: 16px;
    margin: 5px 0;
}

/* Main content styles */
main {
    background-color: white; /* White background for main content */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px; /* Example margin */
}

/* Footer styles */
footer {
    background-color: #f8f9fa; /* Light gray background for footer */
    color: #6c757d;
    text-align: center;
    padding: 10px 0;
}

/* Example hover effect for feature boxes */
.feature-box {
    display: block;
    width: 100%;
    padding: 20px;
    text-align: center;
    color: white;
    background-color: #dc3545;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.feature-box:hover {
    background-color: #c82333;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header h1 {
        font-size: 20px;
    }
    .header p {
        font-size: 14px;
    }
    main {
        padding: 15px;
        margin: 10px;
    }
}
