body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f5f5f5;
    text-align: center;
}

/* Header styling */
header {
    background-color: #4CAF50;
    padding: 20px 40px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo {
    position: absolute;
    left: 20px;
    height: 60px;
    width: auto;
}

header h1 {
    color: white;
    margin: 0;
    font-size: 24px;
}

/* Hero image styling */
.hero {
    width: 90%;
    max-width: 900px;
    max-height: 60vh; /* Limits height to 90% of viewport */
    border-radius: 10px;
    margin-top: 20px;
    /*object-fit: contain; /* Ensures full image is visible without cropping */
}


button {
    margin-top: 10px;
    padding: 10px 20px;
    cursor: pointer;
}
