/* Reset & base font styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    padding: 30px 20px;
    line-height: 1.6;
}

/* Center logo and top tagline */
body > img {
    display: block;
    margin: 0 auto;
    width: 150px;
}

body > p {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
}

/* Section Titles */
h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #e23744;
}

h2 {
    color: #e23744;
    margin-bottom: 10px;
    font-size: 24px;
}

h3 {
    color: #ff5a5f;
    margin: 15px 0 5px;
    font-size: 20px;
}

/* Section content containers */
div {
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Paragraphs and Lists */
p {
    margin-bottom: 15px;
    text-align: left;
}

ul {
    padding-left: 20px;
    list-style-type: disc;
}

li {
    margin-bottom: 8px;
    text-align: left;
}

/* Email & Phone icons */
ul li::marker {
    color: white;
}
