.hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(rgba(11, 59, 76, 0.7), rgba(11, 59, 76, 0.7)), url('protection/i.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 100px 5px 80px;
    color: white;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 32px;
    color: #e9ecef;
}

.about {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #073b4c;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #118ab2;
}

.about-text p {
    color: #4a6572;
    margin-bottom: 16px;
}

.about-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #118ab2;
    text-align: center;
    margin: 60px 0 32px;
    position: relative;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(17, 138, 178, 0.1);
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #06d6a0, #118ab2);
    margin: 12px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(6, 214, 160, 0.4);
}