* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

.content {
    text-align: center;
    z-index: 1;
}

.logo {
    max-width: 90%;
    height: auto;
    max-height: 60vh;
    margin-bottom: 30px;
    object-fit: contain;
}

.phone-number {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
    text-align: center;
}

.phone-number:hover {
    opacity: 0.8;
}

.opening-times {
    position: absolute;
    bottom: 30px;
    text-align: center;
}

.opening-times p {
    font-size: 1rem;
    font-weight: 300;
    color: #cccccc;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .phone-number {
        font-size: 1.5rem;
    }
    
    .opening-times p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-height: 50vh;
    }
    
    .phone-number {
        font-size: 1.3rem;
    }
    
    .opening-times p {
        font-size: 0.85rem;
    }
}