body {
    min-height: 100vh;
    background-image: url('/assets/theme-1/images/parking-page.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Mobile background image */
@media (max-width: 768px) {
    body {
        background-image: url('/assets/theme-1/images/parking-page.png');
    }
}

.content-container {
    text-align: center;
    color: white;
    max-width: 490px;
    width: 100%;
}

.text-content {
    padding: 0px 30px;
}

.logo {
    margin-bottom: 40px;
}

.logo img {
    width: 100%;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.logo p {
    font-size: 1.1rem;
    opacity: 0.9;
    letter-spacing: 1px;
}

.contact-info {
    margin: 30px 0px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;

}

.contact-item a,
.contact-item span {
    font-size: 18px;
    color: #fff;
}

.contact-item img {
    width: 34px;
    height: 34px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.social-links img {
    max-width: 100%;
    aspect-ratio: 1/1;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.app-buttons img {
    height: 45px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.app-buttons img:hover {
    transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 768px) {
    .text-content {
        padding: 0px 20px;
    }

    .contact-item a,
    .contact-item span {
        font-size: 16px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .app-buttons img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .text-content {
        padding: 0px 15px;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        width: 38px;
        height: 38px;
    }

    .app-buttons {
        gap: 10px;
    }

    .app-buttons img {
        height: 38px;
    }
}