/* 1. TAG SELECTOR: Targets the entire body */
body {
    font-family: Arial, sans-serif; /* Example property */
    background-color: #f4f4f9; /* Example property */
    color: #333;
    padding: 20px;
    margin: 0 auto;
    max-width: 75%;
}

h1 {
    text-align: center;
    color: #007bff;
    margin-bottom: 30px;
}

section {
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

img {
    max-width: 40%;
    height: auto;
    border-radius: 4px;
    display: block;
    margin: 10px 0;
}

/* 2. CLASS SELECTOR: Targets all paragraphs with this class */
.item-description {
    color: #555; /* Required color change */
    font-size: 1.1em; /* Required font-size change */
    line-height: 1.5;
}

/* 3. ID SELECTOR: Targets only the section with the ID "featured-item" */
#featured-item {
    background-color: #e6f7ff;
    border: 3px solid #007bff; /* Distinct border */
}

/* 4. DESCENDANT SELECTOR: Targets LI elements ONLY inside ULs inside SECTION tags */
section ul li {
    list-style-type: square; /* Example property */
    color: #0056b3; /* Target specific elements */
    margin: 5px 0;
}

a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}