.safetytips-container {
    background: whitesmoke;
    padding: 80px 0;
}

.safetytips-title {
    color: var(--primary);
    font-size: 48px;
    margin: 0 0 30px;
}

.safetytips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.safetytips-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.safetytips-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.safetytips-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.safetytips-content .tip-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 5px;
    color: #333;
}

.safetytips-content .tip-desc {
    margin: 0;
    line-height: 1.5;
    color: #555;
}

.safetytips-bottom-header {
    color: #333;
    font-size: 44px;
    font-weight: 400;
    margin: 70px 0 15px;
    max-width: 900px;
}

.safetytips-bottom-content {
    max-width: 700px;
}

.safetytips-bottom-content h3 {
    color: black;
    font-weight: 700;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .safetytips-grid {
        grid-template-columns: 1fr;
    }

    .safetytips-title {
        font-size: 36px;
    }

    .safetytips-bottom-header {
        font-size: 28px;
    }
}