.wrapper {
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}
.contact-card {
    background: white;
    padding: 2rem;
    margin: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 800px;
    border-top: 8px solid #BE7B2E;
}

h2 {
    color: #BE7B2E;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 5px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.contact-list li {
    margin: 12px 0;
    display: flex;
    align-items: center;
}

.contact-list a {
    color: #40626E;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #BE7B2E;
    text-decoration: underline;
}

/* Small icon/bullet styling */
.contact-list li::before {
    content: "•";
    color: #BE7B2E;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: 0;
}