.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.container > div {
    padding: 1rem;
    margin: 0.8rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    border-left: 4px solid #2c3e50;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.container > div:hover {
    transform: translateX(10px);
}

.container > div:first-child {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    border-left: 4px solid #e74c3c;
    background: #f8f9fa;
}

.container div:nth-child(2)::before {
    content: "📍 ";
    margin-right: 0.5rem;
}

.container div:nth-child(3)::before {
    content: "📞 ";
    margin-right: 0.5rem;
}

.container div:nth-child(4)::before {
    content: "📧 ";
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .container {
        margin: 1rem;
        padding: 1rem;
    }
    
    .container > div {
        font-size: 1rem;
    }
}
