/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Inter', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    background-image: linear-gradient(to right, rgba(240,240,240,0.1) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(240,240,240,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Header styles */
header {
    margin-bottom: 40px;
    position: relative;
}

.header-design {
    display: flex;
    margin-bottom: 30px;
    height: 10px;
}

.header-design-left {
    width: 50%;
    background-color: #c23b22;
}

.header-design-right {
    width: 50%;
    background-color: #1a365d;
}

.name-descriptor {
    color: #444;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-weight: 500;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Main content styles */
.content {
    display: flex;
    gap: 40px;
}

.column {
    flex: 1;
}

.section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
    color: #444;
    padding-bottom: 8px;
    border-bottom: 2px solid #eee;
    position: relative;
    letter-spacing: 1px;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #c23b22, #1a365d);
}

.entry {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.entry:last-child {
    border-bottom: none;
}

.entry-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.entry-subtitle {
    font-weight: normal;
    color: #666;
    margin-bottom: 5px;
}

.entry-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
}

.entry-description {
    font-size: 0.95rem;
    margin-top: 8px;
}

.entry-description p {
    margin-bottom: 10px;
    position: relative;
}

.entry-description p:last-child {
    margin-bottom: 0;
}

/* Footer styles */
footer {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.contact-links a {
    display: inline-block;
    margin-right: 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.contact-links a:hover {
    background-color: #f5f5f5;
    border-color: #c23b22;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .content {
        flex-direction: column;
    }
    
    .column {
        width: 100%;
    }
    
    h1 {
        font-size: 2rem;
    }
}