/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; 
    background-color: #f8f9fa; 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
    color: #333;
}

.main-container {
    max-width: 800px;
    padding: 20px;
}

/* Image Styling */
.image-wrapper { margin-bottom: 30px; }
.main-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Typography */
.brand-name {
    font-size: 3rem;
    letter-spacing: 5px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: #800000; /* Maroon accent */
    margin: 20px auto;
}

h2 { font-size: 1.8rem; margin-bottom: 15px; }
p { color: #666; font-size: 1.1rem; margin-bottom: 30px; }

/* Contact Section */
.contact-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    border: 1px solid #ddd;
}

.phone-link {
    display: block;
    margin-top: 10px;
    font-size: 1.5rem;
    color: #800000;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 600px) {
    .brand-name { font-size: 2rem; }
    h2 { font-size: 1.4rem; }
}