.about-cta-button {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
}

.about-cta-button:hover {
    background: var(--primary-color);
    color: #fff;
}

.about-cta-button i {
    margin-left: 8px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.about-cta-button:hover i {
    transform: translateX(4px);
}

.about-button-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 3rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .about-cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .about-button-wrapper {
        justify-content: center;
        margin-top: 2rem;
    }
} 