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

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    background-color: #F5D8C4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.business-card {
    background-color: rgba(75, 8, 20, 1);
    color: rgba(234, 166, 144, 1);
    width: 748px;
    height: 484px;
    padding: 55px 44px;
    text-align: center;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    width: 135px;
    height: auto;
    margin: 0 auto 20px;
}

.logo img {
    width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
}

.logo svg {
    width: 100%;
    height: 100%;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    line-height: 1.2;
    margin-bottom: 35px;
    color: rgba(234, 166, 144, 1);
    visibility: hidden;
    height: 0;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-items-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 450px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    font-size: 1.3125rem;
    letter-spacing: 0.05em;
}

.contact-item i {
    font-size: 1.25rem;
    width: 25px;
}

.contact-item a,
.contact-item span {
    color: rgba(234, 166, 144, 1);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.7;
}

.whatsapp-link {
    text-decoration: none;
    border-bottom: 1px dashed rgba(234, 166, 144, 1);
    padding-bottom: 2px;
}

.fa-whatsapp {
    font-size: 1.3rem;
}

.tagline {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 45px;
    letter-spacing: 0.05em;
}

.address {
    font-size: 0.8rem;
    margin-top: 45px;
    text-align: center;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .business-card {
        width: 85vw;
        max-width: 500px;
        padding: 30px 25px;
        height: auto;
    }
    
    .logo {
        width: 112px;
        margin-bottom: 15px;
    }
    
    .contact-item {
        font-size: 1.1rem;
    }
    
    .tagline {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .address {
        font-size: 1rem;
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .business-card {
        width: 90vw;
        padding: 25px 20px;
        height: auto;
    }
    
    .logo {
        width: 90px;
        margin-bottom: 12px;
    }
    
    .contact-item {
        font-size: 1rem;
        gap: 10px;
    }
    
    .contact-item i {
        font-size: 0.95rem;
    }
    
    .tagline {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }
    
    .address {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 5px;
        margin-top: 20px;
    }
}