.header-top {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.logo-inline {
    width: 40px;
    height: 40px;
    user-select: none;
    -webkit-user-drag: none;
}

.about-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 1rem 2rem;
    text-align: left;
}

.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    text-transform: lowercase;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #ddd;
}

.about-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #444;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-section a {
    color: #555;
    text-decoration: none;
    border-bottom: 1px dotted #aaa;
    transition: all 0.2s ease;
    text-transform: lowercase;
}

.about-section a:hover {
    color: #000;
    border-bottom: 1px solid #555;
}

@media (min-width: 768px) {
    .about-section h2 {
        font-size: 1.6rem;
    }
    
    .about-section p {
        font-size: 1.05rem;
    }
} 