/* Basic Reset */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f0f0f0;
}

header .logo img {
    height: 50px;
}

nav a.apply-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background-image: linear-gradient(to right, #e0f7fa, #b2ebf2);
}

.products {
    padding: 50px 20px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.product {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
}

.product img {
    max-width: 100%;
}

.about {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #e0e0e0;
}

/* Apply Page Styling */
.apply-form {
    width: 500px; /* Adjust width as needed */
    margin: 50px auto; /* Center the form */
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.apply-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.apply-form label {
    display: block;
    margin-bottom: 5px;
}

.apply-form input,
.apply-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-buttons {
    text-align: center;
    margin-top: 20px;
}

.submit-btn {
    background-color: #4CAF50; /* Green color */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.reset-btn {
    background-color: #f44336; /* Red color */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.submit-btn:hover, .reset-btn:hover{
    opacity: 0.8;
}