/* CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Helvetica, Arial, sans-serif;
    background-color: #f7f7f7;
    color: #222;
    line-height: 1.6;
}

/* Layout */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Card */
.card {
    background-color: #ffffff;
    max-width: 720px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Image */
.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Text Content */
.content {
    padding: 2rem;
    text-align: center;
}

.content h1 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.content p {
    font-size: 1rem;
    color: #555;
}
