/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #2c3e50;
    color: white;
}

header {
    background-color: #e67e22;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    color: #34495e;
}

main {
    padding: 20px;
    margin: 20px;
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 1.8em;
    text-align: center;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.intro img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.intro p {
    font-size: 1.2em;
    line-height: 1.5;
    text-align: center;
}

.indices ul {
    padding-left: 20px;
    font-size: 1.1em;
    list-style: decimal;
}

.indices li {
    background: #7f8c8d;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

.suspects {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.suspect {
    width: 45%;
    margin-bottom: 20px;
    background-color: #34495e;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.suspect img {
    width: 80%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.question p {
    font-size: 1.2em;
    text-align: center;
    line-height: 1.5;
    color: #ecf0f1;
}

footer {
    background-color: #34495e;
    text-align: center;
    padding: 10px;
    font-size: 1.2em;
    color: #ecf0f1;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .intro img {
        height: 250px;
        object-fit: cover;
    }

    .suspects {
        flex-direction: column;
        align-items: center;
    }

    .suspect {
        width: 80%;
    }

    .indices ul {
        padding-left: 10px;
    }

    .indices li {
        font-size: 1em;
    }

    .question p {
        font-size: 1em;
    }
}
