body {
    font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    color: #2c2c2c;
    line-height: 1.6;
}

.hero {
    background-color: #2d1b4e;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 15px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 15px),
        repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255, 255, 255, 0.02) 30px, rgba(255, 255, 255, 0.02) 32px, transparent 32px, transparent 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(255, 255, 255, 0.02) 30px, rgba(255, 255, 255, 0.02) 32px, transparent 32px, transparent 70px);
    background-size: 15px 15px, 15px 15px, 70px 70px, 70px 70px;
    color: #f8f7fa;
    text-align: center;
    padding: 35px 20px;
    position: relative;
}

.hero h1 {
    font-size: 2.2em;
    margin: 0;
    font-weight: 700;
    font-family: 'Roboto Slab', serif;
}

.statement-card {
    background: linear-gradient(135deg, #f4f2f7 0%, #faf8fc 100%);
    max-width: 800px;
    margin: 25px auto;
    padding: 28px 32px;
    box-shadow: 0 2px 12px rgba(45, 27, 78, 0.08);
    border-radius: 8px;
    border: 2px solid #e6e1ed;
    transition: all 0.3s ease;
}

.statement-card:hover {
    box-shadow: 0 4px 16px rgba(111, 75, 168, 0.18);
    transform: translateY(-2px);
    border-color: #d1c5df;
}

.statement-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.statement-card h2 {
    color: #6f4ba8;
    font-size: 1.5em;
    margin: 0 0 8px 0;
    border: none;
    padding: 0;
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
}

.statement-card p {
    color: #5a5a5a;
    margin: 0;
    font-size: 1.02em;
}

.container {
    width: 85%;
    max-width: 800px;
    margin: 25px auto;
    padding: 30px;
    background-color: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
}

h2 {
    font-family: 'Roboto Slab', serif;
    color: #6f4ba8;
    font-size: 1.7em;
    margin-top: 30px;
    margin-bottom: 18px;
}

h2:first-of-type {
    margin-top: 0;
}

h3 {
    font-family: 'Roboto Slab', serif;
    color: #5a5a5a;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 12px;
}

p {
    margin-bottom: 14px;
    font-size: 1.02em;
}

ul {
    margin-bottom: 14px;
    font-size: 1.02em;
    padding-left: 25px;
}

li {
    margin-bottom: 8px;
}

section#statement ul {
    list-style-type: none;
    padding-left: 0;
}

a {
    color: #6f4ba8;
    text-decoration: none;
    font-weight: bold;
}

a:hover,
a:focus {
    text-decoration: underline;
    color: #533880;
}

footer {
    text-align: center;
    padding: 25px 20px;
    margin-top: 40px;
    background-color: #2c2c2c;
    color: #a8a8a8;
    font-size: 0.9em;
}

hr {
    border: 0;
    height: 1px;
    background: #e8e4ed;
    margin: 35px 0;
}

