/* Styling to match the screenshot exactly */
body {
    background-color: #1a1c1d;
    color: #d1d1d1;
    font-family: 'Courier New', Courier, monospace;
    padding: 30px 15px;
    display: flex;
    justify-content: center;
    margin: 0;
}

.main-card {
    max-width: 580px;
    border: 1px solid #3e4b3e; /* Thin olive border */
    padding: 25px;
    background-color: #1a1c1d;
}

/* Header Area */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.site-logo {
    background-color: #8fbc8f; /* Light green background for name */
    color: #1a1c1d;
    padding: 4px 12px;
    font-weight: bold;
}

.divider {
    color: #3e4b3e;
    letter-spacing: -1px;
    font-weight: bold;
}

.menu-btn {
    border: 1px solid #3e4b3e;
    padding: 4px 10px;
    color: #8fbc8f;
    font-size: 0.9rem;
}

/* Image Box with thick border */
.image-box {
    border: 6px solid #8fbc8f;
    padding: 15px;
    text-align: center;
    margin-bottom: 35px;
    background-color: #1a1c1d;
}

.image-box img {
    max-width: 100%;
    image-rendering: pixelated;
}

/* Text Content */
.greeting {
    line-height: 1.5;
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.section-title {
    color: #e3d9a0; /* Creamy yellow color */
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: bold;
}

/* Numbered List */
.interests-list {
    list-style: none;
    counter-reset: custom-counter;
    padding-left: 0;
}

.interests-list li {
    counter-increment: custom-counter;
    margin-bottom: 18px;
    position: relative;
    padding-left: 45px;
    line-height: 1.4;
    font-size: 1.05rem;
}

/* Large Green Numbers */
.interests-list li::before {
    content: counter(custom-counter) ". ";
    color: #8fbc8f;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Bold and Italic Styling */
strong, b {
    color: #e3d9a0;
    font-weight: bold;
}

em {
    font-style: italic;
    color: #d1d1d1;
}
