* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #111;
    color: #ddd;
    font-family: Georgia, serif;
    line-height: 1.8;
}

.hero {
    height: 70vh;
    background: url("church.jpg") center center/cover no-repeat;
    position: relative;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    color: #f5f5f5;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    color: #aaa;
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content {
    margin-bottom: 80px;
}

.content h2 {
    margin-bottom: 25px;
    color: #f1e6c9;
    border-left: 4px solid #7f5a3d;
    padding-left: 15px;
}

.content p {
    margin-bottom: 20px;
}

.evidence {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.evidence-card {
    background: #1b1b1b;
    border: 1px solid #333;
    padding: 20px;
}

.evidence-card h3 {
    margin-bottom: 10px;
    color: #d2c29a;
}

.placeholder {
    height: 300px;
    border: 2px dashed #555;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 25px;
    color: #888;
}

.case-file {
    background: #181818;
    border-left: 4px solid darkred;
    padding: 20px;
    margin-bottom: 25px;
}

blockquote {
    margin: 25px 0;
    padding: 20px;
    border-left: 4px solid #777;
    background: #1b1b1b;
    font-style: italic;
}

.conclusion {
    text-align: center;
}

footer {
    border-top: 1px solid #333;
    text-align: center;
    padding: 30px;
    color: #777;
}