/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #e0e7ff, #f1f5f9);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Parking Page Container */
.parking-page {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Content Card */
.content-card {
    text-align: center;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 400px;
    max-width: 80%;
}

/* Logo */
.logo {
    width: 200px;
    margin-bottom: 20px;
}

/* Title and Tagline */
h1 {
    font-size: 32px;
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 10px;
}

h2 {
    font-size: 16px;
    color: #4b5563;
    font-weight: 500;
    margin-bottom: 20px;
}

.tagline {
    font-size: 14px;
    color: #6b7280;
    font-weight: 400;
}