@import url('base/variables.css');
@import url('base/animations.css');
.about-hero {
    background-image: url('../img/storm-damage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white; /* sau altă culoare care se vede pe imagine */
    position: relative;
    padding: 80px 20px; /* ajustează după preferință */
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* overlay semi-transparent pentru lizibilitate */
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}
.about-hero h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-hero .lead {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #ffffff;
}

.about-content {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    color: #333;
}

.about-content h2 {
    color: #d32f2f;
    margin-top: 40px;
}

.highlight-box {
    background-color: #fff3f3;
    border-left: 5px solid #d32f2f;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.services-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.cta-section {
    margin-top: 60px;
    text-align: center;
}

.btn-primary {
    background-color: #d32f2f;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #b71c1c;
}
