.angie-professional-hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 600px; /* Optional: limit width like in the design */
}

.ph-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.ph-title {
    margin: 0 0 24px 0;
    line-height: 1.1;
}

.ph-description {
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.ph-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.ph-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 4px; /* Slightly rounded corners */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.2;
}

.ph-icon {
    margin-left: 8px;
    font-family: system-ui, sans-serif; /* Ensure arrow renders consistently */
}

/* Button 1: Primary (Solid) */
.ph-btn-primary {
    border: 1px solid transparent; /* Maintain size parity */
}

/* Button 2: Secondary (Outline) */
.ph-btn-secondary {
    border: 1px solid;
    background-color: transparent;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .ph-title {
        font-size: 32px; /* Fallback if global not set */
    }
    
    .ph-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .ph-btn {
        width: 100%;
        justify-content: center;
    }
}
