:root {
    --si-blue: #003399; /* Signal Iduna Blau */
    --si-dark: #001f5c;
    --bg-light: #f1f5f9;
    --text-main: #1e293b;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.card {
    background: #ffffff;
    width: 100%;
    max-width: 450px;
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.header {
    background-color: var(--si-blue);
    padding: 20px 20px 60px 20px; 
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    width: 80px; 
    height: 80px;
    margin-bottom: 10px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 2;
    overflow: hidden;
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-name {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2px;
    opacity: 0.9;
}

.agency-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.main-info {
    padding: 0 25px 25px 25px;
    text-align: center;
    position: relative;
}

.profile-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    margin-top: -55px; 
    margin-bottom: 15px;
    background-color: #eee;
    position: relative;
    z-index: 3;
}

.name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--si-dark);
    margin-bottom: 4px;
}

.title {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 20px;
}

.contact-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    text-align: left;
    transition: background 0.2s;
}

.contact-item:hover {
    background: #f1f5f9;
}

.icon-box {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: var(--si-blue);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    background-color: var(--si-blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 25px;
    transition: background-color 0.2s;
    text-decoration: none;
}

.download-btn:hover {
    background-color: var(--si-dark);
}

.download-btn svg {
    margin-right: 8px;
}

.map-container {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 10px;
    border: 1px solid #e2e8f0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer {
    padding: 15px;
    text-align: center;
    font-size: 0.75rem;
    color: #94a3b8;
    background: #fafafa;
    border-top: 1px solid #f1f5f9;
}