.about-hero {
    background-image: url('../img/nosotros-hero.png');
    position: relative;
	background-attachment: fixed;
    color: var(--light-color);
    padding: 0;    
    min-height: auto;
	background-position: center;
}

.about-hero-content {
    padding: 40px 0;
}

.about-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

.about-hero-image {
    background-image: url('../img/security-hand.svg');
    background-size: cover;
    background-position: center;
    min-height: 350px;
    border-radius: 5px;
}

.location-bar {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 15px 0;
    margin-top: 30px;
    text-align: center;
    width: 100%;
}

.location-title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.values-list {
    margin-top: 20px;
}

.value-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
}

.about-info-blocks {
    padding-left: 30px;
}

.info-block {
    margin-bottom: 40px;
}

.info-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-color);
}

.values-list-detailed {
    list-style-type: none;
    padding-left: 0;
}

.values-list-detailed li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.values-list-detailed li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Commitment Section */
.commitment-section {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

.commitment-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.how-we-work-container {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
}

.how-we-work-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 0 10px;
    font-weight: 700;
    &:hover{
        color: #fff;
    }
}

.bracket-left,
.bracket-right {
    font-size: 3rem;
    line-height: 1;

}

/* Media Queries */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 1.8rem;
    }
    
    .about-hero-image {
        min-height: 300px;
        margin-top: 30px;
    }
    
    .info-title {
        font-size: 1.6rem;
    }
    
    .about-info-blocks {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        text-align: center;
    }
    
    .about-hero-image {
        margin-top: 20px;
        min-height: 250px;
    }
    
    .location-title {
        font-size: 1.5rem;
    }
    
    .commitment-title {
        font-size: 1.5rem;
    }
    
    .how-we-work-title {
        font-size: 1.4rem;
    }
    
    .bracket-left,
    .bracket-right {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 1.5rem;
    }
    
    .about-hero-image {
        min-height: 200px;
    }
    
    .value-item h3 {
        font-size: 1.2rem;
    }
    
    .info-title {
        font-size: 1.4rem;
    }
    
    .info-block p {
        font-size: 0.95rem;
    }
    
    .commitment-title {
        font-size: 1.3rem;
    }
    
    .how-we-work-title {
        font-size: 1.2rem;
    }
    
    .bracket-left,
    .bracket-right {
        font-size: 2rem;
    }
} 