.hero {
    background: url('../images/hero.webp') no-repeat center center; /* Replace with the correct path */
    background-size: cover;
    height: 1100px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7); /* Add text shadow for better readability */
}

.hero .container {
    background: rgba(0, 0, 0, 0.5); /* Optional: Adds a semi-transparent background for better text visibility */
    padding: 60px;
    border-radius: 10px; /* Rounds corners of the text container */
}

.hero .btn {
    margin-top: 20px;
}

#features img {
    width: 80px;
    height: 80px;
}
.table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}

.table th, .table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.table th {
    background-color: #f4f4f4;
    color: #333;
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 8px 12px;
    font-size: 14px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-primary { background-color: #007bff; color: white; }
.btn-success { background-color: #28a745; color: white; }
.btn-danger { background-color: #dc3545; color: white; }

.btn-primary:hover { background-color: #0056b3; }
.btn-success:hover { background-color: #218838; }
.btn-danger:hover { background-color: #c82333; }

header, footer {
    background-color: transparent; /* Ensure no background color */
    color: #fff; /* Adjust text color for better visibility */
    text-align: center;
    padding: 10px 0;
}

header .container, footer .container {
    background: none; /* Remove any background applied to inner containers */
    margin: 0 auto;
    max-width: 1200px; /* Optional: Set a max width for alignment */
    text-align: center;
}

footer a {
    color: #ffc107; /* Optional: Link color */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}