/* style.css */

/* Applying styles to the whole body */
body {
    background-color: #e8f4f8; /* Requirement: One background color */
    color: #333333;            /* Requirement: One text color */
    font-family: Arial, sans-serif;
    margin: 40px;              /* Requirement: Margin added to an element */
}

/* Main heading updated to your deep burgundy */
h1 {
    color: #831132;
}

/* Background updated to golden yellow so the padded area shows the color */
p {
    background-color: #FFDF00; 
    padding: 15px;             /* Requirement: Padding */
    border-radius: 8px;        
}

/* Image background updated to golden yellow for the "photo frame" effect */
img {
    background-color: #FFDF00;
    padding: 10px;             /* Requirement: Padding */
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

/* Specific styling for your company logo so it keeps a clear background */
#brand-logo {
    background-color: transparent; 
    padding: 0;                    
    border-radius: 0;              
    max-width: 150px;              
    margin-bottom: 20px;
}