/* Author: Web Developer
   Project: Isme Style Studio Final Update
*/

body {
    background-color: #ffffff;
    color: #333333;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 30px;
    line-height: 1.8;
}

/* Main Heading - Red Color Update */
h1 {
    color: #FF0000 !important; /* Pure Red */
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: capitalize;
}

/* H2 Section with the Sky Blue background */
h2 {
    background-color: #87CEEB; 
    color: #000000;           
    padding: 12px 20px;
    margin-top: 40px;
    margin-bottom: 20px;
    display: block;           
}

/* Image Formatting */
img {
    margin: 25px 0;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

/* Link Styling */
a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* List spacing */
ul, ol {
    margin-bottom: 30px;
}

li {
    margin-bottom: 5px;
}