body,
h1,
h2,
p,
ul,
li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", "Roboto", Arial, sans-serif;
    background: #fff;
    color: #222;
    line-height: 1.7;
    padding: 0;
    min-height: 100vh;
}

.container {
    max-width: 820px;
    margin: 40px auto 40px auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(39, 174, 96, 0.08),
        0 1.5px 6px rgba(0, 0, 0, 0.03);
    padding: 40px 32px 32px 32px;
}

h1 {
    color: #27ae60;
    font-size: 2.5rem;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -1px;
    text-align: center;
}

h2 {
    color: #222;
    font-size: 1.35rem;
    margin-top: 32px;
    margin-bottom: 12px;
    font-weight: 600;
    border-left: 4px solid #27ae60;
    padding-left: 12px;
    background: linear-gradient(90deg, #27ae6012 0%, #fff 100%);
}

p {
    margin-bottom: 18px;
    font-size: 1.05rem;
}

ul {
    margin-bottom: 18px;
    padding-left: 22px;
}

li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    position: relative;
    padding-left: 10px;
}

li::marker {
    color: #27ae60;
    font-size: 1.2em;
}

strong {
    color: #27ae60;
    font-weight: 600;
}

a {
    color: #27ae60;
    text-decoration: underline;
    transition: color 0.2s;
}

a:hover,
a:focus {
    color: #219150;
    text-decoration: none;
}

.images {
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
}

@media (max-width: 600px) {
    .container {
        padding: 18px 6vw 18px 6vw;
        margin: 18px 0;
    }
    h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.05rem;
        padding-left: 8px;
    }
    p,
    li {
        font-size: 0.98rem;
    }
}

h2:not(:first-of-type) {
    margin-top: 38px;
    border-top: 1px solid #e9f7ef;
    padding-top: 18px;
}

a[href^="mailto:"] {
    font-weight: 600;
    background: #e9f7ef;
    padding: 2px 6px;
    border-radius: 4px;
}
