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

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    min-height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.content {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.nandos-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact {
    margin-top: 2rem;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #666;
    font-weight: 500;
}

.contact a {
    font-size: 1.5rem;
    color: #e31e24;
    text-decoration: none;
    font-weight: bold;
    padding: 15px 30px;
    border: 2px solid #e31e24;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact a:hover {
    background-color: #e31e24;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .content {
        padding: 2rem;
        margin: 1rem;
    }

    .contact a {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .container {
        padding: 10px;
    }
}