/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.business-card {
    max-width: 400px;
    width: 100%;
}

.card-content {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid #b87333;
    border-radius: 10px;
    background: rgba(184, 115, 51, 0.05);
}

.card-content h1 {
    font-size: 2.5rem;
    color: #b87333;
    font-weight: 300;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.established {
    font-size: 1rem;
    color: #999;
    margin-bottom: 2.5rem;
}

.contact-info {
    border-top: 1px solid #333;
    padding-top: 2rem;
}

.contact-info h2 {
    font-size: 1.5rem;
    color: #b87333;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.title {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.email {
    color: #b87333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
}

.email:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 480px) {
    .card-content {
        padding: 2rem 1.5rem;
    }
    
    .card-content h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .contact-info h2 {
        font-size: 1.3rem;
    }
    
    .email {
        font-size: 1rem;
    }
} 