body {
    background: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
}

.container {
    text-align: center;
    padding: 40px;
    background-color: #1e1e1e;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    max-width: 480px;
    width: 90%;
    animation: fadeIn 1s ease-in-out;
}

.logo img {
    max-width: 160px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 4px #ff6f00);
}

.business-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ff6f00;
}

.tagline {
    font-size: 16px;
    font-style: italic;
    color: #bdbdbd;
    margin-bottom: 15px;
}

.contact-info {
    font-size: 16px;
    line-height: 1.6;
    color: #cfd8dc;
}

.phone {
    display: block;
    margin-top: 10px;
    font-weight: 500;
}

.email a {
    text-decoration: none;
    color: #ffa726;
    font-weight: 500;
}

.email a:hover {
    text-decoration: underline;
}

footer.footer {
    margin-top: 30px;
    font-size: 14px;
    color: #78909c;
}

form.contact-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    background: #263238;
    border: 1px solid #37474f;
    padding: 10px;
    border-radius: 6px;
    color: #e0e0e0;
    font-size: 14px;
}

.contact-form button {
    background-color: #ff6f00;
    color: #121212;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #e65100;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #90a4ae;
    opacity: 1; /* Ensure visibility */
}
