/* General Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #cad6db;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Fruit Container Styling */
.fruit-container {
    max-width: 800px;
    background-color: #c3a9a7;
    border-radius: 8px;
    padding: 20px;
    margin: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Fruit Name Styling */
.fruit-name {
    font-size: 32px;
    font-weight: bold;
    color: #e74c3c; /* Soft Red */
    margin-bottom: 20px;
    text-align: center;
}

/* Section Heading Styling */
.section-heading {
    font-size: 24px;
    color: #27ae60; /* Bright Green */
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Content Text Styling */
.content {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Highlighted Background for Sections */
.highlight {
    background-color: #f39c12; /* Warm Yellow */
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
}

/* Button Styling */
.fruit-button {
    display: inline-block;
    background-color: #27ae60; /* Bright Green */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin: 10px;
    transition: background-color 0.3s ease;
}

.fruit-button:hover {
    background-color: #1e8449; /* Slightly darker green for hover effect */
}
