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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #5dade2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: calc(15vh - 40px);
    padding-bottom: 20px;
}

.business-card .logo {
    width: 267px;
    height: 267px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    margin-bottom: 20px;
}

.business-card {
    background: #f8f9fa;
    padding: 60px 80px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    text-align: center;
    max-width: 600px;
    transition: transform 0.3s ease;
    border: 3px solid #2c3e50;
}

.business-name {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    white-space: nowrap;
}

.phone {
    font-size: 1.5em;
    color: #2c3e50;
    text-decoration: none;
    border: 2px solid #2c3e50;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

.phone:hover {
    background: #2c3e50;
    color: #f8f9fa;
    transform: scale(1.05);
}

.email {
    font-size: 1.5em;
    color: #2c3e50;
    text-decoration: none;
    border: 2px solid #2c3e50;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.email:hover {
    background: #2c3e50;
    color: #f8f9fa;
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .business-card .logo {
        width: 247px;
        height: 247px;
    }
    
    .business-card {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .business-name {
        font-size: 2em;
    }
    
    .phone {
        font-size: 1.2em;
        padding: 12px 25px;
    }
    
    .email {
        font-size: 1.2em;
        padding: 12px 25px;
    }
}
