body {
    font-family: 'Arial', sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo-image {
    height: 50px;
    margin-right: 10px;
}

.container {
    margin-top: 120px;
    width: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeIn 2s ease-in;
    text-align: center;
}

h1, h2, h3, h4 {
    margin: 20px 0;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="file"], input[type="text"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}

#result {
    display: none;
    margin-top: 20px;
}

#suggestions {
    color: #ff0000;
    font-weight: bold;
}

#recommendations {
    text-align: left;
}

footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Tips Section */
#tips {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    animation: slideUp 1.5s ease-in-out;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    padding: 10px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(100px); }
    to { transform: translateY(0); }
}
