/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Background */
body {
    background: #f7f3ee;
    color: #5d4037;
    text-align: center;
    padding: 20px;
}

/* Container */
.container {
    max-width: 700px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Title */
h1 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

/* Intro Text */
.intro {
    font-size: 1rem;
    text-align: justify;
    margin-bottom: 20px;
}

/* Section Titles */
h2 {
    font-size: 1.3rem;
    margin-top: 30px;
    border-bottom: 2px solid #bca999;
    padding-bottom: 5px;
}

/* Lists */
ul {
    margin: 15px 0;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Closing Text */
.closing {
    font-size: 1rem;
    text-align: justify;
    margin-top: 30px;
}

/* Signature */
.signature {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
}

/* Image Container */
.image-container {
    text-align: center;
    margin-top: 30px;
}

.image-container img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
