body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    max-width: 850px;
    margin: 40px auto;
    padding: 40px;
    color: #2c3e50;
    background: 
        linear-gradient(135deg, #f9f9f9 22px, #f3f3f3 22px, #f3f3f3 24px, transparent 24px, transparent 67px, #f3f3f3 67px, #f3f3f3 69px, transparent 69px),
        linear-gradient(225deg, #f9f9f9 22px, #f3f3f3 22px, #f3f3f3 24px, transparent 24px, transparent 67px, #f3f3f3 67px, #f3f3f3 69px, transparent 69px) 0 64px;
    background-color: #f9f9f9;
    background-size: 64px 128px;
}

.letter-container {
    background: white;
    padding: 50px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border: 1px solid #eaeaea;
    position: relative;
}

.letter-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.02) 100%);
    pointer-events: none;
}

.logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.logo-image {
    width: 120px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.letter-head {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    position: relative;
}

.letter-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(to right, transparent, #2c8a4a, transparent);
}

.letter-head h1 {
    color: #2c8a4a;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.letter-head p {
    font-style: italic;
    color: #666;
    font-size: 18px;
}

.press-release {
    font-weight: 600;
    text-align: center;
    margin: 15px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #34495e;
    font-size: 14px;
}

.date {
    text-align: right;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

.content {
    margin-bottom: 40px;
}

.content h2 {
    color: #2c8a4a;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.content h3 {
    color: #34495e;
    margin-top: 30px;
    font-size: 20px;
}

.highlight {
    background-color: #f8f9fa;
    padding: 25px;
    border-left: 4px solid #2c8a4a;
    margin: 30px 0;
    font-style: italic;
    color: #2c3e50;
}

.contact-info {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
    font-size: 15px;
}

.apply-button {
    display: inline-block;
    background-color: #2c8a4a;
    color: white;
    text-align: center;
    padding: 15px 40px;
    margin: 30px 0;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.apply-button:hover {
    background-color: #1f6b3a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44,138,74,0.2);
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

a {
    color: #2c8a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1f6b3a;
}