/* Base styles */
body {
    background-color: #1a1a1a;
    font-family: 'Montserrat', Arial, sans-serif;
    color: white;
    padding: 20px;
}

/* Section heading styles with phs- prefix */
.phs-section-heading {
    text-align: center;
    margin: 40px 0;
    font-weight: normal;
    letter-spacing: 1px;
    font-size: 3rem;
}

.phs-section-text {
    color: #00aca6; /* Teal/turquoise color as in your design */
    font-weight: 200; /* Light weight for the first part */
    margin-right: 8px;
}

.phs-section-highlight {
    color: white;
    font-weight: 900; /* Bold weight for the highlighted part */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .phs-section-heading {
        font-size: 20px;
        margin: 30px 0;
    }
}