/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background-color: #f4f7f9;
    color: #1f2933;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Layout */
.container {
    max-width: 680px;
    padding: 40px 30px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Image */
.hero-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 6px;
}

/* Typography */
h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 25px;
}

.message {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact {
    font-size: 0.95rem;
    margin-bottom: 35px;
}

.contact a {
    color: #0a7cc7;
    text-decoration: none;
    font-weight: 500;
}

.contact a:hover {
    text-decoration: underline;
}


.qr{
	width:40%;
	max-width:300px; 
	margin:auto;
	}

.text-center{text-align:center;}

/* Footer */
footer {
    font-size: 0.8rem;
    color: #6b7280;
}