html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
:root {
    --theme-primary: #ea4335;   
    --theme-dark: #121824;      
    --theme-light-bg: #f8f9fa;  
}

@media(max-width:600px){
    .about-hero{
         padding-bottom: 20px!important;
    }
    .about-hero .highlight-badge{
        margin-top: 60px!important;
        padding-top: 15px!important; 
    }
}
.about-hero {
    background-color: var(--theme-dark);
    color: #ffffff;
    padding-top: 100px; 
    padding-bottom: 60px;
    border-bottom: 4px solid var(--theme-primary);
}

section p {
    text-align: justify;
    text-justify: inter-word; 
}

.highlight-badge {
    background-color: var(--theme-primary);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}
.section-title-line {
    width: 60px;
    height: 4px;
    background-color: var(--theme-primary);
    display: inline-block;
    border-radius: 2px;
}
.highlight-box {
    background-color: var(--theme-dark);
    border-radius: 16px;
}

.highlight-box-title {
    border-left: 4px solid var(--theme-primary);
    padding-left: 12px;
}

.content-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}