/* Container Well */
.contact-well {
    background-color: #d0d0d0;
    border: 3px inset #ffffff;
    padding: 30px; /* More breathing room */
    margin: 20px auto;
    max-width: 650px; /* Widened to accommodate larger text */
}

/* Header bar text */
.well-header {
    background-color: #808080;
    color: white;
    font-family: "MS Sans Serif", Geneva, sans-serif;
    font-size: 11pt; /* Up from 9pt */
    font-weight: bold;
    padding: 5px 10px;
    margin: -30px -30px 25px -30px;
    border-bottom: 2px inset #ffffff;
    display: flex;
    justify-content: space-between;
}

/* Intro Paragraph */
.intro-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13pt; /* Larger, clearer size */
    line-height: 1.6;
    color: #000;
    margin-bottom: 20px;
}

/* Directory labels (The "Courier" part) */
.label {
    display: block;
    font-family: "Courier New", Courier, monospace;
    font-weight: bold;
    font-size: 14pt; /* Scaled up for readability */
    color: #444;
    text-decoration: underline;
    margin-bottom: 8px;
}

/* The actual contact info */
.value {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 15pt; /* High visibility for the actual link */
    font-weight: bold;
    padding-left: 10px;
}

.value a {
    color: #0000ee;
    text-decoration: none;
}

.value a:hover {
    text-decoration: underline;
    color: #ff0000; /* Classic retro red hover */
}

.directory-divider {
    border: 0;
    border-top: 2px dashed #808080; /* Thicker dash */
    margin: 25px 0;
}

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

.directory-graphic {
    margin-right: 25px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    height: 64px;
}

.directory-text {
    flex: 1;
}

.contact-gif {
    width: 64px;
    height: 64px;
    image-rendering: pixelated;
    display: block;
}